mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-10 05:44:16 +00:00
fix popup topmost property not really working on Ventura (#311)
This commit is contained in:
parent
3e5998ec14
commit
cf77e0abf9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ static bool popup_set_blur_radius(struct popup* popup, uint32_t radius) {
|
|||
static void popup_order_windows(struct popup* popup) {
|
||||
int level = popup->topmost
|
||||
? kCGScreenSaverWindowLevel
|
||||
: kCGNormalWindowLevel;
|
||||
: kCGNormalWindowLevel - 1;
|
||||
window_set_level(&popup->window, level);
|
||||
window_order(&popup->window, NULL, W_ABOVE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue