mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
6201ac34b4
The preference setting seemed far too strange to do this. And not very user friendly. So instead we figure out if this is a dark theme or not by looking at text and background colors in the palette, and make sure we get notified if that changes. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
11 lines
184 B
C++
11 lines
184 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "TabBase.h"
|
|
|
|
TabBase::TabBase(QWidget *parent) : QWidget(parent)
|
|
{
|
|
}
|
|
|
|
void TabBase::updateUi(QString titleColor)
|
|
{
|
|
Q_UNUSED(titleColor)
|
|
}
|