diff options
author | Regina Henschel <rb.henschel@t-online.de> | 2023-10-09 13:31:06 +0200 |
---|---|---|
committer | Regina Henschel <rb.henschel@t-online.de> | 2023-10-18 14:36:55 +0200 |
commit | 6c32d052011132e891dab3254bf2a2ea6f31e888 (patch) | |
tree | 9e70246def55cfce8bf9a5ea0706945cbc65c810 /cui | |
parent | 626fe9ab5ebebc4ef36e35f4aa597c03a3564d22 (diff) |
tdf#132605 Negative skew values in connector dialog
The skew values of a standard connector can have negative values.
Those are possible in ODF, rendered in LO and produced by dragging the
handles. Only the dialog restricts the metric field to non negative
values. The patch allows negative values now.
Change-Id: I5174dccc1ed0ed8644e0f62a5d599eea4d5cdbaf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157700
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/uiconfig/ui/connectortabpage.ui | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cui/uiconfig/ui/connectortabpage.ui b/cui/uiconfig/ui/connectortabpage.ui index a2f6aadf3e03..d82e643f4629 100644 --- a/cui/uiconfig/ui/connectortabpage.ui +++ b/cui/uiconfig/ui/connectortabpage.ui @@ -3,16 +3,19 @@ <interface domain="cui"> <requires lib="gtk+" version="3.20"/> <object class="GtkAdjustment" id="adjustment1"> + <property name="lower">-100</property> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment2"> + <property name="lower">-100</property> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> </object> <object class="GtkAdjustment" id="adjustment3"> + <property name="lower">-100</property> <property name="upper">100</property> <property name="step_increment">1</property> <property name="page_increment">10</property> |