Skip to content

Commit

Permalink
Fixing messages, won't keep echoing disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Briggs committed Mar 24, 2013
1 parent 4cbc787 commit 511383f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Screenkey/listenkbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ def update_text(self, string=None):
self._disabled=True
self.text = "[DISABLED]"
else:
self.text = "%s%s" % (self.label.get_text(), string)
if not self._disabled:
self.text = "%s%s" % (self.label.get_text(), string)

self.label.set_text(self.text)
else:
Expand Down
2 changes: 1 addition & 1 deletion data/screenkey.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Encoding=UTF-8
Name=Screenkey
Comment=Screencast your keys
Version=0.2b
Version=0.2
Exec=screenkey
Terminal=false
Icon=preferences-desktop-keyboard-shortcuts
Expand Down

0 comments on commit 511383f

Please sign in to comment.