Start Patch and Surface inspector dialogues at the smallest size.
This commit is contained in:
parent
18810b4edd
commit
e60f3dfb74
3 changed files with 6 additions and 2 deletions
|
@ -1941,8 +1941,8 @@ ui::MenuItem create_edit_menu()
|
||||||
}*/
|
}*/
|
||||||
undobutton = create_menu_item_with_mnemonic(menu, "_Undo", "Undo");
|
undobutton = create_menu_item_with_mnemonic(menu, "_Undo", "Undo");
|
||||||
redobutton = create_menu_item_with_mnemonic(menu, "_Redo", "Redo");
|
redobutton = create_menu_item_with_mnemonic(menu, "_Redo", "Redo");
|
||||||
gtk_menu_item_set_label(undobutton, "Undo (Nothing...)");
|
Undo_DisableButton();
|
||||||
gtk_menu_item_set_label(redobutton, "Redo (Nothing...)");
|
Redo_DisableButton();
|
||||||
menu_separator(menu);
|
menu_separator(menu);
|
||||||
create_menu_item_with_mnemonic(menu, "_Copy", "Copy");
|
create_menu_item_with_mnemonic(menu, "_Copy", "Copy");
|
||||||
create_menu_item_with_mnemonic(menu, "_Paste", "Paste");
|
create_menu_item_with_mnemonic(menu, "_Paste", "Paste");
|
||||||
|
|
|
@ -1092,6 +1092,8 @@ ui::Window PatchInspector::BuildDialog()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make small */
|
||||||
|
gtk_window_set_default_size(GTK_WINDOW(window), 8, 8);
|
||||||
return window;
|
return window;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1228,6 +1228,8 @@ ui::Window SurfaceInspector::BuildDialog()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make small */
|
||||||
|
gtk_window_set_default_size(GTK_WINDOW(window), 8, 8);
|
||||||
return window;
|
return window;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue