Skip to content

Commit

Permalink
fix(power_menu): update blur effect border color to 'None'
Browse files Browse the repository at this point in the history
Updated the border color for the blur effect in the power menu to 'None' instead of 'custom'. This change ensures a cleaner appearance and aligns with design specifications. The adjustment was made in both the main window and the blur background settings, enhancing visual consistency across the application.
  • Loading branch information
amnweb committed Sep 4, 2024
1 parent cecdb5c commit edeaf43
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/widgets/yasb/power_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,21 +210,20 @@ def __init__(self, parent_button, uptime,blur, blur_background, animation_durati
self.center_on_screen()

if blur:

Blur(
self.winId(),
Acrylic=False,
DarkMode=False,
RoundCorners=False,
BorderColor="custom"
BorderColor="None"
)
if blur_background:
Blur(
self.overlay.winId(),
Acrylic=False,
DarkMode=False,
RoundCorners=False,
BorderColor="custom"
BorderColor="None"
)


Expand Down

0 comments on commit edeaf43

Please sign in to comment.