Skip to content

Commit

Permalink
Corrected information and tooltip for Clipboard Widget
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarta committed Mar 23, 2019
1 parent f392590 commit 371a0fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions qui/clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ def __init__(self, wm, **properties):

self.icon = Gtk.StatusIcon()
self.icon.set_from_icon_name('edit-copy')
self.icon.set_tooltip_markup('<b>Qubes Clipboard</b>\nInformation'
'about current state of Qubes Clipboard.')
self.icon.connect('button-press-event', self.show_menu)

self.menu = Gtk.Menu()
Expand Down Expand Up @@ -199,8 +201,8 @@ def prepare_menu(self):
self.menu.append(Gtk.SeparatorMenuItem())

help_label = Gtk.Label(xalign=0)
help_label.set_markup("<i>Use <b>Ctrl+Shift+V</b> to paste, "
"<b>Ctrl+Shift+C</b> to copy.</i>")
help_label.set_markup("<i>Use <b>Ctrl+Shift+C</b> to copy, "
"<b>Ctrl+Shift+V</b> to paste.</i>")
help_item = Gtk.MenuItem()
help_item.set_margin_left(10)
help_item.set_sensitive(False)
Expand Down

0 comments on commit 371a0fc

Please sign in to comment.