summaryrefslogtreecommitdiff
path: root/libreofficekit
diff options
context:
space:
mode:
authorPranav Kant <pranavk@collabora.co.uk>2017-12-01 00:37:11 +0530
committerAndras Timar <andras.timar@collabora.com>2018-03-19 14:56:01 +0100
commit18dffe2e1952264c78ef35c71731d41a99de5ccd (patch)
tree876b466be361db460c545a7333081e5eabd795e4 /libreofficekit
parent7a2b5aa2607d765fb59a3fabdf9c283fc8857ac1 (diff)
lokdialog: Do not underestimate the dialog size
Some of them like, EditStyle, can be much bigger. Change-Id: Iaad02fadba18846976b959369f06e2020feffc6f (cherry picked from commit 3d8154ec427777eadf5719f194662e5ade78fae5)
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));