aboutsummaryrefslogtreecommitdiff
path: root/utils/plot_ui
diff options
context:
space:
mode:
authorDMaroo <dhruvmaru007@gmail.com>2021-08-09 11:14:57 +0530
committerDMaroo <dhruvmaru007@gmail.com>2021-08-09 11:14:57 +0530
commit8f378ab00a809c0d85fc524a2d71e448c725bdbe (patch)
tree5651e29bb14493f4a03bd3f7d957c003f94fe573 /utils/plot_ui
parenta92952fa03e7aeed5f47c24e295dfbe49851bc98 (diff)
downloadAFLplusplus-8f378ab00a809c0d85fc524a2d71e448c725bdbe.tar.gz
Removed HEIGHT and WIDTH since the windows will anyways start maximized
Diffstat (limited to 'utils/plot_ui')
-rw-r--r--utils/plot_ui/afl-plot-ui.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/plot_ui/afl-plot-ui.c b/utils/plot_ui/afl-plot-ui.c
index 9e96ad5b..2877f815 100644
--- a/utils/plot_ui/afl-plot-ui.c
+++ b/utils/plot_ui/afl-plot-ui.c
@@ -3,9 +3,6 @@
#include <stdio.h>
#include <string.h>
-#define WIDTH 400
-#define HEIGHT 640
-
char USAGE[] =
"is a helper utility for rendering the GNUplot graphs in a GTK window. This allows to real time resizing, scrolling, and cursor positioning features while viewing the graph. This utility also provides options to hide graphs using check buttons.\n \
\n \
@@ -43,7 +40,6 @@ int main(int argc, char **argv) {
gtk_init(&argc, &argv);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
- gtk_window_set_default_size(GTK_WINDOW(window), WIDTH, HEIGHT);
gtk_window_set_title(GTK_WINDOW(window), "Graph drawing");
gtk_container_set_border_width(GTK_CONTAINER(window), 10);