Add the missing getter for sharp window corners

This commit is contained in:
Hei 2024-11-30 19:10:56 +02:00
parent 893bbdfde8
commit b045523d58

View file

@ -2409,6 +2409,9 @@ bool DisplayServerWindows::window_get_flag(WindowFlags p_flag, WindowID p_window
case WINDOW_FLAG_ALWAYS_ON_TOP: {
return wd.always_on_top;
} break;
case WINDOW_FLAG_SHARP_CORNERS: {
return wd.sharp_corners;
} break;
case WINDOW_FLAG_TRANSPARENT: {
return wd.layered_window;
} break;