Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better dark theme + fix typo
  • Loading branch information
3nids committed Apr 27, 2023
1 parent 429c740 commit 2033624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/settings/qgssettingstreemodel.cpp
Expand Up @@ -76,7 +76,7 @@ bool QgsSettingsTreeModelNodeData::setValue( const QVariant &value )
mValue = value;
mIsEdited = ( value != mOriginalValue );
}
// TODO: check the value of setting is fullfilling the settings' contraints ?
// TODO: check the value of setting is fulfilling the settings' contsraints ?
return true;
}

Expand Down Expand Up @@ -175,7 +175,7 @@ QgsSettingsTreeModel::QgsSettingsTreeModel( QgsSettingsTreeNode *rootNode, QObje
mRootNode = QgsSettingsTreeModelNodeData::createRootNodeData( rootNode, this );

QPalette pal = qApp->palette();
mEditedColorBack = pal.color( QPalette::Active, QPalette::Mid );
mEditedColorBack = pal.color( QPalette::Active, QPalette::Dark );
mEditedColorFore = pal.color( QPalette::Active, QPalette::BrightText );
mNotSetColor = pal.color( QPalette::Disabled, QPalette::WindowText );
}
Expand Down

0 comments on commit 2033624

Please sign in to comment.