From b54f27599cb762a0cdc975b61af8684170aca51c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Philipp=20H=C3=B6rist?= <philipp@hoerist.com>
Date: Sun, 25 Mar 2018 23:27:54 +0200
Subject: [PATCH] Set min-width for notebooks tabs

Fixes #8973
---
 gajim/data/gui/message_window.ui | 7 +++++--
 gajim/data/style/gajim.css       | 3 +++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/gajim/data/gui/message_window.ui b/gajim/data/gui/message_window.ui
index 79efdaac4f..13e23ffe74 100644
--- a/gajim/data/gui/message_window.ui
+++ b/gajim/data/gui/message_window.ui
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated with glade 3.20.2 -->
+<!-- Generated with glade 3.21.0 -->
 <interface>
   <requires lib="gtk+" version="3.12"/>
   <object class="GtkEventBox" id="chat_tab_ebox">
@@ -30,8 +30,11 @@
             <property name="can_focus">False</property>
             <property name="use_markup">True</property>
             <property name="ellipsize">end</property>
-            <property name="max_width_chars">9</property>
+            <property name="single_line_mode">True</property>
             <property name="xalign">0</property>
+            <style>
+              <class name="notebook-tab-label"/>
+            </style>
           </object>
           <packing>
             <property name="expand">False</property>
diff --git a/gajim/data/style/gajim.css b/gajim/data/style/gajim.css
index 696442aa46..4691310fdb 100644
--- a/gajim/data/style/gajim.css
+++ b/gajim/data/style/gajim.css
@@ -99,3 +99,6 @@ popover#EmoticonPopover flowboxchild { padding-top: 5px; padding-bottom: 5px; }
 .status-away { color: #ff8533;}
 .status-dnd { color: #e62e00;}
 .status-online { color: #66bf10;}
+
+/*MessageWindow Notebook*/
+.notebook-tab-label {min-width: 80px}
-- 
GitLab