Skip to content

Commit

Permalink
SNItem: Fix return.
Browse files Browse the repository at this point in the history
  • Loading branch information
rilian-la-te committed May 26, 2017
1 parent 7d40f74 commit dbe45dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "cmake/vala"]
path = cmake/vala
url = git://github.com/rilian-la-te/cmake-vala.git
url = https://github.com/rilian-la-te/cmake-vala.git
[submodule "src/dbusmenu"]
path = src/dbusmenu
url = git://github.com/rilian-la-te/vala-dbusmenu.git
url = https://github.com/rilian-la-te/vala-dbusmenu.git
2 changes: 1 addition & 1 deletion src/dbusmenu
2 changes: 2 additions & 0 deletions src/snitem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,11 @@ namespace StatusNotifier
ebox.button_release_event.connect(button_press_event_cb);
ebox.enter_notify_event.connect((e)=>{
this.get_style_context().add_class("-panel-launch-button-selected");
return false;
});
ebox.leave_notify_event.connect((e)=>{
this.get_style_context().remove_class("-panel-launch-button-selected");
return false;
});

this.query_tooltip.connect(query_tooltip_cb);
Expand Down

0 comments on commit dbe45dc

Please sign in to comment.