# 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 --git a/libgui/src/m-editor/file-editor.cc b/libgui/src/m-editor/file-editor.cc --- a/libgui/src/m-editor/file-editor.cc +++ b/libgui/src/m-editor/file-editor.cc @@ -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);