[alacarte] Don't use fixed height mode



commit a892965b67d0f3be6a8c1b3a0a2944bf7653a65c
Author: Olav Vitters <olav vitters nl>
Date:   Tue Aug 23 23:07:59 2011 +0200

    Don't use fixed height mode
    
    Causes problems when font size is increased (accessibility problem)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=589385

 Alacarte/MainWindow.py |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/Alacarte/MainWindow.py b/Alacarte/MainWindow.py
index 4cd50ee..ba6bdae 100644
--- a/Alacarte/MainWindow.py
+++ b/Alacarte/MainWindow.py
@@ -173,13 +173,11 @@ class MainWindow:
 		column.add_attribute(cell, 'pixbuf', 0)
 		##column.set_attributes(cell, pixbuf=0)
 		cell = Gtk.CellRendererText()
-		cell.set_fixed_size(-1, 25)
 		column.pack_start(cell, True)
 		##column.set_attributes(cell, markup=1)
 		# do i need this?
 		#column.clear_attributes(cell)
 		column.add_attribute(cell, 'markup', 1)
-		column.set_sizing(Gtk.TreeViewColumnSizing.FIXED)
 		menus.append_column(column)
 		menus.enable_model_drag_source(Gdk.ModifierType.BUTTON1_MASK, self.dnd_menus, Gdk.DragAction.COPY)
 		menus.enable_model_drag_dest(self.dnd_both, Gdk.DragAction.PRIVATE)
@@ -207,7 +205,6 @@ class MainWindow:
 		#column.clear_attributes(cell)
 		column.add_attribute(cell, 'pixbuf', 1)
 		cell = Gtk.CellRendererText()
-		cell.set_fixed_size(-1, 25)
 		column.pack_start(cell, True)
 		#column.set_attributes(cell, markup=2)
 		# do i need this?



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]