cui/uiconfig/ui/connectortabpage.ui |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 6c32d052011132e891dab3254bf2a2ea6f31e888
Author:     Regina Henschel <rb.hensc...@t-online.de>
AuthorDate: Mon Oct 9 13:31:06 2023 +0200
Commit:     Regina Henschel <rb.hensc...@t-online.de>
CommitDate: Wed Oct 18 14:36:55 2023 +0200

    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.tie...@documentfoundation.org>

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>

Reply via email to