Kaydet (Commit) 3d8154ec authored tarafından Pranav Kant's avatar Pranav Kant

lokdialog: Do not underestimate the dialog size

Some of them like, EditStyle, can be much bigger.

Change-Id: Iaad02fadba18846976b959369f06e2020feffc6f
üst ec09f526
......@@ -457,14 +457,14 @@ gtv_lok_dialog_class_init(GtvLokDialogClass* klass)
properties[PROP_DIALOG_WIDTH] = g_param_spec_uint("width",
"Dialog width",
"Dialog width",
0, 1024, 0,
0, 4096, 0,
static_cast<GParamFlags>(G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
properties[PROP_DIALOG_HEIGHT] = g_param_spec_uint("height",
"Dialog height",
"Dialog height",
0, 1024, 0,
0, 2048, 0,
static_cast<GParamFlags>(G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment