summaryrefslogtreecommitdiff
path: root/libreofficekit
diff options
context:
space:
mode:
authorPranav Kant <pranavk@collabora.co.uk>2017-12-01 00:37:11 +0530
committerPranav Kant <pranavk@collabora.co.uk>2017-12-04 17:14:01 +0530
commit3d8154ec427777eadf5719f194662e5ade78fae5 (patch)
tree3d34c0b8015dd89f29e0c41c2133c7e2ca156946 /libreofficekit
parentec09f526114ef289e7a0a7804f443f2b16a67f15 (diff)
lokdialog: Do not underestimate the dialog size
Some of them like, EditStyle, can be much bigger. Change-Id: Iaad02fadba18846976b959369f06e2020feffc6f
Diffstat (limited to 'libreofficekit')
-rw-r--r--libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx b/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx
index bb206acb109e..546913d5953f 100644
--- a/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx
@@ -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));