projects
/
platform
/
core
/
csapi
/
tizenfx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fc1e12
)
Fix Panes.Unpressed event
author
sung-su.kim
<sung-su.kim@samsung.com>
Wed, 5 Jul 2017 04:51:03 +0000
(13:51 +0900)
committer
Sung-su Kim
<sung-su.kim@samsung.com>
Wed, 5 Jul 2017 04:52:29 +0000
(
04:52
+0000)
- TCAPI-2363
Change-Id: Iafff2114a0d56a47e425d44182861749200d3172
src/ElmSharp/ElmSharp/Panes.cs
patch
|
blob
|
history
diff --git
a/src/ElmSharp/ElmSharp/Panes.cs
b/src/ElmSharp/ElmSharp/Panes.cs
index
ec6c861
..
d99b5b6
100755
(executable)
--- a/
src/ElmSharp/ElmSharp/Panes.cs
+++ b/
src/ElmSharp/ElmSharp/Panes.cs
@@
-34,7
+34,7
@@
namespace ElmSharp
public Panes(EvasObject parent) : base(parent)
{
_press = new SmartEvent(this, this.RealHandle, "press");
- _unpressed = new SmartEvent(this, this.RealHandle, "unpress
ed
");
+ _unpressed = new SmartEvent(this, this.RealHandle, "unpress");
_press.On += (s, e) => Pressed?.Invoke(this, e);
_unpressed.On += (s, e) => Unpressed?.Invoke(this, e);