Cleanup the prettyness of subsurface on Gtk+ style.

Fix some stuff concerning the pretyness of subsurface while running
on Gnome and XFCE enviroments. This is the kind of stuff that I
really didn`t want to put on the code but sometimes it`s for the
best. this makes the MainTab much more bearable. There are still
things to fix, like the size and positioning of some of the icons.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
Tomaz Canabrava 2013-09-26 16:51:11 -03:00
parent d6f2988bcf
commit 8f94b904dd
3 changed files with 21 additions and 23 deletions

View file

@ -42,7 +42,10 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
#ifdef __APPLE__
setDocumentMode(false);
#else
setDocumentMode(true);
if (qApp->style()->objectName() == "gtk+")
setDocumentMode(false);
else
setDocumentMode(true);
#endif
// we start out with the fields read-only; once things are
// filled from a dive, they are made writeable