<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - [FORMATTING] Default table border width is useless"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=99027#c23">Comment # 23</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - [FORMATTING] Default table border width is useless"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=99027">bug 99027</a>
from <span class="vcard"><a class="email" href="mailto:raykowj@gmail.com" title="Jim Raykowski <raykowj@gmail.com>"> <span class="fn">Jim Raykowski</span></a>
</span></b>
<pre>(In reply to Yousuf Philips (jay) from <a href="show_bug.cgi?id=99027#c22">comment #22</a>)
<span class="quote">> Can anyone think of any other places this needs to be fixed? The only thing
> that comes to my mind is that if a table has border disabled and they open
> the table properties dialog's borders tab, the width field is at 0.05pt.
>
> Tried altering the spinbox id from linewidthmf:0.00pt to linewidthmf:0.50pt,
> but it would then appear as 9.0050pt in the dialog. Also using
> linewidthmf:0.01pt would turn into 1.001pt.
>
> Jim can you have a look at this?
>
> <a href="https://opengrok.libreoffice.org/xref/core/cui/uiconfig/ui/borderpage.ui">https://opengrok.libreoffice.org/xref/core/cui/uiconfig/ui/borderpage.ui</a>
> <a href="https://opengrok.libreoffice.org/xref/core/cui/source/tabpages/border.cxx">https://opengrok.libreoffice.org/xref/core/cui/source/tabpages/border.cxx</a></span >
Jay,
The width spin uses the GtkAdjustment 1 object properties. Adjust these values
to what you want.
borderpage.ui
6 <object class="GtkAdjustment" id="adjustment1">
7 <property name="lower">0.050000000000000003</property>
8 <property name="upper">9</property>
9 <property name="step_increment">0.25</property>
10 <property name="page_increment">1</property>
11 </object>
GtkAdjustment 2 is used by the padding spins
GtkAdjustment 3 is used by the distance spin</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>