We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62bed20 + 6ad5b31 commit f25b022Copy full SHA for f25b022
1 file changed
include/webui.hpp
@@ -271,6 +271,16 @@ namespace webui {
271
webui_set_high_contrast(webui_window, status);
272
}
273
274
+ // Maximize the window
275
+ void maximize() {
276
+ webui_maximize(webui_window);
277
+ }
278
+
279
+ // Minimize the window
280
+ void minimize() {
281
+ webui_minimize(webui_window);
282
283
284
// Close a specific window only. The window object will still exist.
285
void close() const {
286
webui_close(webui_window);
0 commit comments