Skip to content

Commit

Permalink
Fix background color definition in toolbar hover state to use RGBA fo…
Browse files Browse the repository at this point in the history
…rmat for consistency
  • Loading branch information
dongzgh committed Jan 12, 2025
1 parent 933e0a9 commit 892f408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/visMainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void visMainWindow::createToolBar() {
"background-color: rgba(0, 0, 0, 0.5);"
"}"
"QToolButton::hover {"
"background-color: rgb(250, 226, 83, 0.5);"
"background-color: rgba(250, 226, 83, 0.5);"
"}"
);

Expand Down

0 comments on commit 892f408

Please sign in to comment.