From 3b534268e78712d5ef9bff41c2f71963d140bfb3 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sat, 11 Apr 2015 20:13:44 +0300 Subject: Try to fix a bug with the radio button labels. --- src/net_monitor | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/net_monitor b/src/net_monitor index 7856442..a9d9eb4 100755 --- a/src/net_monitor +++ b/src/net_monitor @@ -518,26 +518,26 @@ class MonitorGui: vbox = Gtk.VBox() frame.add(vbox) # summary - first_button = Gtk.RadioButton(None, _("Summary")) + first_button = Gtk.RadioButton.new_with_label_from_widget(None, _("Summary")) first_button.connect('toggled', self.update_stat_iface, (iface, graph_vnstat, "summary")) vbox.pack_start(first_button, False, False, 0) # summary - button = Gtk.RadioButton(None, _("Hourly traffic")) + button = Gtk.RadioButton.new_with_label_from_widget(None, _("Hourly traffic")) button.connect('toggled', self.update_stat_iface, (iface, graph_vnstat, "hourly")) vbox.pack_start(button, False, False, 0) button.join_group(first_button) # summary - button = Gtk.RadioButton(None, _("Daily traffic")) + button = Gtk.RadioButton.new_with_label_from_widget(None, _("Daily traffic")) button.connect('toggled', self.update_stat_iface, (iface, graph_vnstat, "daily")) vbox.pack_start(button, False, False, 0) button.join_group(first_button) # summary - button = Gtk.RadioButton(None, _("Monthly traffic")) + button = Gtk.RadioButton.new_with_label_from_widget(None, _("Monthly traffic")) button.connect('toggled', self.update_stat_iface, (iface, graph_vnstat, "monthly")) vbox.pack_start(button, False, False, 0) button.join_group(first_button) # summary - button = Gtk.RadioButton(None, _("Top 10 traffic days")) + button = Gtk.RadioButton.new_with_label_from_widget(None, _("Top 10 traffic days")) button.connect('toggled', self.update_stat_iface, (iface, graph_vnstat, "top")) vbox.pack_start(button, False, False, 0) button.join_group(first_button) -- cgit v1.2.1