[Libreoffice-bugs] [Bug 132797] NB can customize if visible=true/false is available
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Thu May 7 08:20:25 UTC 2020
https://bugs.documentfoundation.org/show_bug.cgi?id=132797
--- Comment #1 from andreas_k <kainz.a at gmail.com> ---
code example notebookbar.ui file from writer:
<object class="GtkToolButton" id="File-ExportToPDF">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="action_name">.uno:ExportToPDF</property>
<property name="use_underline">True</property>
</object>
If you open the file with glade, it change the property to
<object class="GtkToolButton" id="File-ExportToPDF">
<property name="can_focus">False</property>
<property name="action_name">.uno:ExportToPDF</property>
<property name="use_underline">True</property>
</object>
and than it can't be edited with Tools -> customize -> Notebookbar tab. The
command is visible in the gui you can edit the visibility checkbox, but in the
code no new file was generated. I think it's cause the customization code do
something like change visible property from True to False but as there is no
visible property it didn't work.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20200507/39235db1/attachment.htm>
More information about the Libreoffice-bugs
mailing list