From bb8278625d58323e8871f92eaa4492bbc7d1c11f Mon Sep 17 00:00:00 2001 From: imdano <> Date: Wed, 5 Mar 2008 20:43:32 +0000 Subject: [PATCH] Fix formatting of wireless network entry information. --- gui.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gui.py b/gui.py index dc3bb31..f426601 100644 --- a/gui.py +++ b/gui.py @@ -927,11 +927,11 @@ class WirelessNetworkEntry(NetworkEntry): + self.lbl_strength.get_label()) # Pack the network status HBox. - self.hbox_status.pack_start(self.lbl_strength, False, True) - self.hbox_status.pack_start(self.lbl_encryption, False, True) - self.hbox_status.pack_start(self.lbl_mac, False, True) - self.hbox_status.pack_start(self.lbl_mode, False, True) - self.hbox_status.pack_start(self.lbl_channel, False, True) + self.hbox_status.pack_start(self.lbl_strength, True, True) + self.hbox_status.pack_start(self.lbl_encryption, True, True) + self.hbox_status.pack_start(self.lbl_mac, True, True) + self.hbox_status.pack_start(self.lbl_mode, True, True) + self.hbox_status.pack_start(self.lbl_channel, True, True) # Add the wireless network specific parts to the NetworkEntry # VBox objects.