Skip to content

Commit

Permalink
revert unintended change
Browse files Browse the repository at this point in the history
  • Loading branch information
mstr2 committed Oct 20, 2024
1 parent 0ddd63d commit 7969622
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ jlong _1createWindow(JNIEnv *env, jobject jWindow, jlong jOwnerPtr, jlong jScree
BOOL hidden = YES;
if (jOwnerPtr == 0L) {
// no owner means it is the primary stage; Decorated primary stage shows status bar by default
hidden = ((jStyleMask & com_sun_glass_ui_Window_DECORATED) == 0);
hidden = ((jStyleMask & com_sun_glass_ui_Window_TITLED) == 0);

NSObject * values = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"UIStatusBarHidden"];
//we prefer explicit settings from .plist
Expand Down

0 comments on commit 7969622

Please sign in to comment.