From 8a86ecc38dbeb90cad4ccd46f9988a39fc6742e7 Mon Sep 17 00:00:00 2001 From: Daniel Pavel Date: Fri, 14 Dec 2012 21:50:45 +0200 Subject: [PATCH] smaller icons in toolbars --- app/ui/main_window.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/ui/main_window.py b/app/ui/main_window.py index 1765835e..3022ae2c 100644 --- a/app/ui/main_window.py +++ b/app/ui/main_window.py @@ -14,6 +14,7 @@ from . import config_panel as _config_panel _RECEIVER_ICON_SIZE = Gtk.IconSize.LARGE_TOOLBAR _DEVICE_ICON_SIZE = Gtk.IconSize.DIALOG _STATUS_ICON_SIZE = Gtk.IconSize.LARGE_TOOLBAR +_TOOLBAR_ICON_SIZE = Gtk.IconSize.MENU _PLACEHOLDER = '~' _FALLBACK_ICON = 'preferences-desktop-peripherals' @@ -42,7 +43,7 @@ def _make_receiver_box(name): toolbar = Gtk.Toolbar() toolbar.set_style(Gtk.ToolbarStyle.ICONS) - toolbar.set_icon_size(Gtk.IconSize.SMALL_TOOLBAR) + toolbar.set_icon_size(_TOOLBAR_ICON_SIZE) toolbar.set_show_arrow(False) frame._toolbar = toolbar @@ -120,7 +121,7 @@ def _make_device_box(index): light_label.set_alignment(0, 0.5) light_label.set_width_chars(8) - not_encrypted_icon = Gtk.Image.new_from_icon_name('security-low', _STATUS_ICON_SIZE - 1) + not_encrypted_icon = Gtk.Image.new_from_icon_name('security-low', _STATUS_ICON_SIZE) not_encrypted_icon.set_name('not-encrypted') not_encrypted_icon.set_tooltip_text('The wireless link between this device and the Unifying Receiver is not encrypted.\n' '\n' @@ -131,7 +132,7 @@ def _make_device_box(index): toolbar = Gtk.Toolbar() toolbar.set_style(Gtk.ToolbarStyle.ICONS) - toolbar.set_icon_size(_STATUS_ICON_SIZE - 1) + toolbar.set_icon_size(_TOOLBAR_ICON_SIZE) toolbar.set_show_arrow(False) frame._toolbar = toolbar