Skip to content

Commit

Permalink
ui: increase thumbnail edge contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanVoxel committed Sep 14, 2024
1 parent 90b9af4 commit 2fc0dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagstudio/src/qt/widgets/thumb_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def _apply_edge(
faded (bool): Whether or not to apply a faded version of the edge.
Used for light themes.
"""
opacity: float = 0.8 if not faded else 0.6
opacity: float = 1.0 if not faded else 0.8
shade_reduction: float = (
0
if QGuiApplication.styleHints().colorScheme() is Qt.ColorScheme.Dark
Expand Down

0 comments on commit 2fc0dd0

Please sign in to comment.