Remove redundant checks

i-have-no-land-and-i-must-scream
Andrei Kortunov 8 months ago
parent 0262b33067
commit bf568da6de

@ -90,7 +90,7 @@ Launcher::MainDialog::~MainDialog()
bool Launcher::MainDialog::event(QEvent* event)
{
// Apply style sheet again if style was changed
if (event->type() == QEvent::ThemeChange || event->type() == QEvent::PaletteChange)
if (event->type() == QEvent::PaletteChange)
{
if (toolBar != nullptr)
toolBar->setStyleSheet(toolBarStyle);

@ -138,7 +138,7 @@ CSVWorld::TableBottomBox::TableBottomBox(const CreatorFactoryBase& creatorFactor
bool CSVWorld::TableBottomBox::event(QEvent* event)
{
// Apply style sheet again if style was changed
if (event->type() == QEvent::ThemeChange || event->type() == QEvent::PaletteChange)
if (event->type() == QEvent::PaletteChange)
{
if (mStatusBar != nullptr)
mStatusBar->setStyleSheet(statusBarStyle);

Loading…
Cancel
Save