From e81bbc1dabc3601876bd7393c73b49d5ff87ee85 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Fri, 27 Sep 2013 12:52:01 -0300 Subject: Hack to make the subsurface work on Gnome3 shell The Gtk+ style on the Gnome shell is somewhat broken on Qt for some reason. This hack pokes the system, checks if it's running gnome-shell, and if the current style is gtk+ ( I couldn't just check for gtk+ since it worked on XFCE and other Gtk based enviro ments. so a double check is needed. ) then I changed the Pallete of the affected widgets by hand. not a pretty hack but worked. [Dirk Hohndel: redid the patch to be simpler and more consistent] Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/maintab.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'qt-ui/maintab.cpp') diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 98247566a..cc56a58c6 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -96,6 +96,17 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), setMinimumHeight(0); setMinimumWidth(0); + + // Current display of things on Gnome3 looks like shit, so + // let`s fix that. + if (isGnome3Session()) { + QPalette p; + p.setColor(QPalette::Window, QColor(Qt::white)); + ui->scrollArea->viewport()->setPalette(p); + ui->scrollArea_2->viewport()->setPalette(p); + ui->scrollArea_3->viewport()->setPalette(p); + ui->scrollArea_4->viewport()->setPalette(p); + } } void MainTab::addDiveStarted() -- cgit v1.2.3-70-g09d2