mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-04-07 14:09:22 +08:00
[win-linux] asctabwidget: fix loader color for dark theme
This commit is contained in:
@ -515,7 +515,7 @@ int CAscTabWidget::insertPanel(QWidget * panel, int index)
|
||||
break;
|
||||
default:
|
||||
tabcolor = QString::fromStdWString(ui_theme.value(CTheme::ColorRole::ecrTabDefaultActiveBackground));
|
||||
m_pBar->setTabThemeType(tabindex, /*ui_theme.isDark() ? CTabBar::DarkTab :*/ CTabBar::LightTab);
|
||||
m_pBar->setTabThemeType(tabindex, ui_theme.isDark() ? CTabBar::DarkTab : CTabBar::LightTab);
|
||||
}
|
||||
|
||||
switch ( tab_type ) {
|
||||
|
||||
Reference in New Issue
Block a user