[macOS] Add an option to align window buttons in "extend to title" mode.

This commit is contained in:
bruvzg
2022-09-20 11:12:49 +03:00
parent aa553f4030
commit 0ed4cc6287
10 changed files with 215 additions and 1 deletions

View File

@@ -7528,6 +7528,7 @@ EditorNode::EditorNode() {
// Extend menu bar to window title.
if (can_expand) {
DisplayServer::get_singleton()->window_set_window_buttons_offset(Vector2i(menu_hb->get_minimum_size().y / 2, menu_hb->get_minimum_size().y / 2), DisplayServer::MAIN_WINDOW_ID);
DisplayServer::get_singleton()->window_set_flag(DisplayServer::WINDOW_FLAG_EXTEND_TO_TITLE, true, DisplayServer::MAIN_WINDOW_ID);
menu_hb->set_can_move_window(true);
}