rosenrot-browser

A hackable browser based on Webkitgtk
Log | Files | Refs | README

commit a69d72f42b904725da949d5e10f01b45b1614ef9
parent 374128fccc4f5725355736bf6008697318944101
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Mon, 12 Dec 2022 15:38:48 +0000

tweak: allow configurable width and height

and set a default of 500, 400

Diffstat:
Mconfig.def.h | 2++
Mrose.c | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/config.def.h b/config.def.h @@ -28,6 +28,8 @@ #define ZOOM 1 /* Starting zoom level */ #define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */ #define BG_COLOR "#1E1E2E" +#define WIDTH 500 +#define HEIGHT 400 typedef enum { goback, diff --git a/rose.c b/rose.c @@ -296,7 +296,7 @@ void setup(GtkNotebook *notebook, const char *uri) bar = GTK_HEADER_BAR(gtk_header_bar_new()); search_buf = GTK_ENTRY_BUFFER(gtk_entry_buffer_new("", 0)); search = GTK_ENTRY(gtk_entry_new_with_buffer(search_buf)); - + gtk_window_set_default_size(window, WIDTH, HEIGHT); window_init(notebook); notebook_init(notebook, uri);