# HG changeset patch # User Torsten # Date 1388851413 -3600 # Node ID 55b8dc2ea0222ab6e201b6fbb8155003478bc461 # Parent e54cfaae830bab67bf663339cfc5ea333c2d35e0 * file-editor.cc (construct): reduce the height of the tab bars diff -r e54cfaae830b -r 55b8dc2ea022 libgui/src/m-editor/file-editor.cc --- a/libgui/src/m-editor/file-editor.cc Tue Dec 17 16:24:29 2013 +0000 +++ b/libgui/src/m-editor/file-editor.cc Sat Jan 04 17:03:33 2014 +0100 @@ -874,6 +874,9 @@ #ifdef HAVE_QTABWIDGET_SETMOVABLE _tab_widget->setMovable (true); #endif + _tab_widget->setStyleSheet ("QTabBar::tab {max-height: 4ex; }"); + + QAction *new_action = new QAction (QIcon (":/actions/icons/filenew.png"), tr ("&New File"), _tool_bar);