Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove workaround for qt bug https://bugreports.qt.io/browse/QTBUG-69204


fixed since 5.12
  • Loading branch information
nyalldawson committed May 17, 2023
1 parent 18d0228 commit 2ea458d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/app/qgisapp.cpp
Expand Up @@ -3265,12 +3265,6 @@ void QgisApp::createActionGroups()

void QgisApp::setAppStyleSheet( const QString &stylesheet )
{
// avoid crash on stylesheet change -- see https://bugreports.qt.io/browse/QTBUG-69204
static bool sOnce = false;
if ( sOnce )
return;
sOnce = true;

setStyleSheet( stylesheet );

// cascade styles to any current layout designers
Expand Down

0 comments on commit 2ea458d

Please sign in to comment.