about summary refs log tree commit diff
path: root/utils/plot_ui/afl-plot-ui.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2021-08-07 21:29:16 +0200
committerGitHub <noreply@github.com>2021-08-07 21:29:16 +0200
commit08cb3f8ab5cb4538182926436d203f266f09077b (patch)
treed8fbb84253b1088b55be29fd3f4c04a3f73207b2 /utils/plot_ui/afl-plot-ui.c
parent6b06d4c74d0d8d82ddbe75c81e35ed423e735314 (diff)
parentd832ed68eaa9bc514b788970c21a68e606c0dfea (diff)
downloadafl++-08cb3f8ab5cb4538182926436d203f266f09077b.tar.gz
Merge pull request #1055 from DMaroo/fullscreen
`afl-plot-ui` window starts maximized now
Diffstat (limited to 'utils/plot_ui/afl-plot-ui.c')
-rw-r--r--utils/plot_ui/afl-plot-ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/plot_ui/afl-plot-ui.c b/utils/plot_ui/afl-plot-ui.c
index 856bf082..1a1eb0ed 100644
--- a/utils/plot_ui/afl-plot-ui.c
+++ b/utils/plot_ui/afl-plot-ui.c
@@ -141,6 +141,7 @@ int main(int argc, char **argv) {
   g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(gtk_main_quit),
                    NULL);
   gtk_widget_show_all(window);
+  gtk_window_maximize(GTK_WINDOW(window));
   gtk_main();
 
   return EXIT_SUCCESS;