Skip to content

Commit 77b924d

Browse files
Rename Console tab to Log Console
1 parent 8de3928 commit 77b924d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

qt/OpenRGBDialog2.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,21 +1693,21 @@ void Ui::OpenRGBDialog2::AddConsolePage()
16931693

16941694
ui->InformationTabBar->addTab(page, "");
16951695

1696-
QString SoftwareLabelString;
1696+
QString ConsoleLabelString;
16971697

16981698
if(IsDarkTheme())
16991699
{
1700-
SoftwareLabelString = "console_dark.png";
1700+
ConsoleLabelString = "console_dark.png";
17011701
}
17021702
else
17031703
{
1704-
SoftwareLabelString = "console.png";
1704+
ConsoleLabelString = "console.png";
17051705
}
17061706

17071707
/*-----------------------------------------------------*\
17081708
| Create the tab label |
17091709
\*-----------------------------------------------------*/
1710-
TabLabel* SoftwareTabLabel = new TabLabel(SoftwareLabelString, "Console");
1710+
TabLabel* ConsoleTabLabel = new TabLabel(ConsoleLabelString, "Log Console");
17111711

1712-
ui->InformationTabBar->tabBar()->setTabButton(ui->InformationTabBar->tabBar()->count() - 1, QTabBar::LeftSide, SoftwareTabLabel);
1712+
ui->InformationTabBar->tabBar()->setTabButton(ui->InformationTabBar->tabBar()->count() - 1, QTabBar::LeftSide, ConsoleTabLabel);
17131713
}

0 commit comments

Comments
 (0)