Skip to content

Commit

Permalink
#5160 The taskbar has been improved to make the currently active task…
Browse files Browse the repository at this point in the history
… more distinct from the others.
  • Loading branch information
pawelsalawa committed Dec 11, 2024
1 parent 886ed9f commit e39140e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ChangeLog

### 3.4.10
- CHANGE: #5160 The taskbar has been improved to make the currently active task more distinct from the others.
- BUGFIX: #5148 Fixed counting of tables in queries transparently attaching other databases.
- BIGFIX: #5162 Fixed crash when enabling STRICT option in Table Window.
- BIGFIX: Fixed dialog windows positioning, so it's remembered correctly if the dialog is only moved, but not resized.
Expand Down
12 changes: 12 additions & 0 deletions SQLiteStudio3/guiSQLiteStudio/taskbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,18 @@ QList<QAction*> TaskBar::getTasks() const
void TaskBar::init()
{
setAcceptDrops(true);
setStyleSheet(R"(
QToolButton:checked {
color: white;
background-color: #0078D7;
border: 2px solid #005A9E;
border-radius: 4px;
}
QToolButton:hover {
background-color: #005A9E;
color: white;
}
)");
}

void TaskBar::mousePressed()
Expand Down

0 comments on commit e39140e

Please sign in to comment.