Author: andar
Revision: 5276
Log:
Set some sane defaults for peers/file tabs column widths
Diff:
Modified: branches/1.1.0_RC/ChangeLog
===================================================================
--- branches/1.1.0_RC/ChangeLog 2009-05-17 17:05:28 UTC (rev 5275)
+++ branches/1.1.0_RC/ChangeLog 2009-05-18 16:26:26 UTC (rev 5276)
@@ -8,6 +8,7 @@
* Fix showing non-utf8 encoded torrents in add torrent dialog -- this adds
an additional dependency on chardet.
* Fix exception when timing out trying to send notification email
+ * Set some sane defaults for peers/file tabs column widths
==== WebUI ====
* Fix starting when -l option is used
Modified: branches/1.1.0_RC/deluge/ui/gtkui/files_tab.py
===================================================================
--- branches/1.1.0_RC/deluge/ui/gtkui/files_tab.py 2009-05-17 17:05:28 UTC
(rev 5275)
+++ branches/1.1.0_RC/deluge/ui/gtkui/files_tab.py 2009-05-18 16:26:26 UTC
(rev 5276)
@@ -32,9 +32,6 @@
# statement from all source files in the program, then also delete it here.
#
-#
-
-
import gtk, gtk.glade
import gobject
import gettext
@@ -122,7 +119,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(200)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -135,7 +132,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -148,7 +145,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -164,7 +161,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
Modified: branches/1.1.0_RC/deluge/ui/gtkui/peers_tab.py
===================================================================
--- branches/1.1.0_RC/deluge/ui/gtkui/peers_tab.py 2009-05-17 17:05:28 UTC
(rev 5275)
+++ branches/1.1.0_RC/deluge/ui/gtkui/peers_tab.py 2009-05-18 16:26:26 UTC
(rev 5276)
@@ -32,9 +32,6 @@
# statement from all source files in the program, then also delete it here.
#
-#
-
-
import gtk, gtk.glade
import os.path
import cPickle
@@ -91,7 +88,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(20)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -107,7 +104,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -120,7 +117,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -133,7 +130,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -146,7 +143,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -159,7 +156,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
Modified: trunk/deluge/ui/gtkui/files_tab.py
===================================================================
--- trunk/deluge/ui/gtkui/files_tab.py 2009-05-17 17:05:28 UTC (rev 5275)
+++ trunk/deluge/ui/gtkui/files_tab.py 2009-05-18 16:26:26 UTC (rev 5276)
@@ -110,7 +110,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(200)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -123,7 +123,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -136,7 +136,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -152,7 +152,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
Modified: trunk/deluge/ui/gtkui/peers_tab.py
===================================================================
--- trunk/deluge/ui/gtkui/peers_tab.py 2009-05-17 17:05:28 UTC (rev 5275)
+++ trunk/deluge/ui/gtkui/peers_tab.py 2009-05-18 16:26:26 UTC (rev 5276)
@@ -82,7 +82,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(20)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -98,7 +98,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -111,7 +111,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -124,7 +124,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(100)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -137,7 +137,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
@@ -150,7 +150,7 @@
column.set_clickable(True)
column.set_resizable(True)
column.set_expand(False)
- column.set_min_width(10)
+ column.set_min_width(50)
column.set_reorderable(True)
self.listview.append_column(column)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---