Blob Blame History Raw
From 4d498ecd75c124efa750eb4320e64bd8b5fdc0ac Mon Sep 17 00:00:00 2001
From: Sorokin Alexei <sor.alexei@meowr.ru>
Date: Thu, 18 Feb 2016 19:27:51 +0300
Subject: [PATCH 1/4] Gtk3: Fix category titles being needlessly line wrapped

---
 ccm/Widgets.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ccm/Widgets.py b/ccm/Widgets.py
index 6f34207..ea29ab9 100644
--- a/ccm/Widgets.py
+++ b/ccm/Widgets.py
@@ -1561,7 +1561,7 @@ class CategoryBox(Gtk.VBox):
         icon = text.lower ().replace (" ", "_")
         image = Image (icon, ImageCategory)
         header.pack_start (image, False, False, 0)
-        header.pack_start (label, False, False, 0)
+        header.pack_start (label, True, True, 0)
 
         self._table = Gtk.Table ()
         self._table.set_border_width (10)
-- 
2.7.1