-
Notifications
You must be signed in to change notification settings - Fork 807
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Activity list fixes and improvements. Adjusted sorting to show intera…
…ctive and security activities always on top (after errors). Added button to scroll up when new activity arrives. Improved sync status scrollbar. Signed-off-by: alex-z <[email protected]>
- Loading branch information
1 parent
395edd9
commit 15cf06e
Showing
18 changed files
with
361 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright (C) 2023 by Oleksandr Zolotov <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* for more details. | ||
*/ | ||
|
||
import QtQuick 2.15 | ||
import QtQuick.Controls 2.15 | ||
import Style 1.0 | ||
|
||
ProgressBar { | ||
id: control | ||
|
||
background: Rectangle { | ||
implicitWidth: Style.progressBarWidth | ||
implicitHeight: Style.progressBarBackgroundHeight | ||
radius: Style.progressBarRadius | ||
color: Style.progressBarBackgroundColor | ||
border.color: Style.progressBarBackgroundBorderColor | ||
border.width: Style.progressBarBackgroundBorderWidth | ||
} | ||
|
||
contentItem: Item { | ||
implicitWidth: Style.progressBarWidth | ||
implicitHeight: Style.progressBarContentHeight | ||
|
||
Rectangle { | ||
width: control.visualPosition * parent.width | ||
height: parent.height | ||
radius: Style.progressBarRadius | ||
color: Style.progressBarContentColor | ||
border.color: Style.progressBarContentBorderColor | ||
border.width: Style.progressBarContentBorderWidth | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.