https://bugs.documentfoundation.org/show_bug.cgi?id=146285

Julien Nabet <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
           See Also|                            |https://bugs.documentfounda
                   |                            |tion.org/show_bug.cgi?id=12
                   |                            |9527

--- Comment #3 from Julien Nabet <[email protected]> ---
Caolán: noticing dcab1993ed29a408a704cfddbbd15dc7dd8ffc80 "Resolves: tdf#129527
enable/disable edit-style button at the right time"
thought you might be interested in this one.

In all cases LO got here in sw/source/ui/chrdlg/numpara.cxx:
290 IMPL_LINK_NOARG(SwParagraphNumTabPage, EditNumStyleSelectHdl_Impl,
weld::ComboBox&, void)
291 {
292     int numSelectPos = m_xNumberStyleLB->get_active();
293     // 0 is "None" and -1 is unselected state
294     if (numSelectPos == 0 || numSelectPos == -1)
295         m_xEditNumStyleBtn->set_sensitive(false);
296     else
297         m_xEditNumStyleBtn->set_sensitive(true); <<<<<<< HERE
298 }
See
https://opengrok.libreoffice.org/xref/core/sw/source/ui/chrdlg/numpara.cxx?r=88afa134#290

in gtk3, the button is disabled but not with gen/kf5 renderings.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to