Skip to content

Commit

Permalink
gui/stylehelper: Fix object naming
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei-Fabian-Pop <[email protected]>
  • Loading branch information
Andrei-Fabian-Pop committed Oct 2, 2024
1 parent cb5cb01 commit 5e69ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/src/stylehelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ void StyleHelper::TableWidgetDebugger(QTableWidget *w, QString objectName)
void StyleHelper::SplitterStyle(QSplitter *w, QString objectName)
{
if(!objectName.isEmpty()) {
w->setStyleSheet(objectName);
w->setObjectName(objectName);
}

QString style = QString(R"css(
Expand All @@ -1528,7 +1528,7 @@ void StyleHelper::SplitterStyle(QSplitter *w, QString objectName)
void StyleHelper::TreeViewDebugger(QTreeView *w, QString objectName)
{
if(!objectName.isEmpty()) {
w->setStyleSheet(objectName);
w->setObjectName(objectName);
}

QString style = R"css(
Expand Down

0 comments on commit 5e69ef7

Please sign in to comment.