[Webkit-unassigned] [Bug 176337] New: [GTK] Settings dialog in MiniBrowser cannot be resized
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Sep 4 16:00:16 PDT 2017
https://bugs.webkit.org/show_bug.cgi?id=176337
Bug ID: 176337
Summary: [GTK] Settings dialog in MiniBrowser cannot be resized
Product: WebKit
Version: Other
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: WebKit Misc.
Assignee: webkit-unassigned at lists.webkit.org
Reporter: aperez at igalia.com
According to the GTK+ inspector, the BrowserSettingsDialog window
is resizable, and indeed the resize handles are shown when moving
the mouse over the window edges -- yes the window cannot be resized!
Also, it cannot be moved, which may be related.
Of course, applying the patch below doesn't work either :-(
diff --git a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c b/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c
index 511b3db04fb..113df9f0065 100644
--- a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c
+++ b/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c
@@ -154,6 +154,7 @@ static void browser_settings_dialog_init(BrowserSettingsDialog *dialog)
gtk_box_pack_start(contentArea, scrolledWindow, TRUE, TRUE, 0);
gtk_widget_show(scrolledWindow);
+ gtk_window_set_resizable(GTK_WINDOW(dialog), TRUE);
g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL);
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170904/706de36a/attachment.html>
More information about the webkit-unassigned
mailing list