Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some Qt 5.13 css parsing warnings
  • Loading branch information
github-actions[bot] committed Jan 13, 2020
1 parent 1751d8e commit f32188a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/qgisappstylesheet.cpp
Expand Up @@ -126,11 +126,11 @@ void QgisAppStyleSheet::buildStyleSheet( const QMap<QString, QVariant> &opts )
{
//sidebar style
QString style = "QListWidget#mOptionsListWidget {"
" background-color: rgb(69, 69, 69, 0);"
" background-color: rgba(69, 69, 69, 0);"
" outline: 0;"
"}"
"QFrame#mOptionsListFrame {"
" background-color: rgb(69, 69, 69, 220);"
" background-color: rgba(69, 69, 69, 220);"
"}"
"QListWidget#mOptionsListWidget::item {"
" color: white;"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgstaskmanagerwidget.cpp
Expand Up @@ -576,7 +576,7 @@ QgsTaskManagerFloatingWidget::QgsTaskManagerFloatingWidget( QgsTaskManager *mana
setMinimumSize( minWidth, minHeight );
layout()->addWidget( w );
setStyleSheet( ".QgsTaskManagerFloatingWidget { border-top-left-radius: 8px;"
"border-top-right-radius: 8px; background-color: rgb(0, 0, 0, 70%); }" );
"border-top-right-radius: 8px; background-color: rgba(0, 0, 0, 70%); }" );
}


Expand Down

0 comments on commit f32188a

Please sign in to comment.