https://bugs.documentfoundation.org/show_bug.cgi?id=156609
Michael Weghorn <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #8 from Michael Weghorn <[email protected]> --- Actually, the fact that Accerciser doesn't show the Table interface looks like an Accerciser bug: It errors out when handling the Selection interface, then doesn't handle any other interfaces any more. The Table interface is shown just fine again for me when disabling the "problematic" part in Accerciser in a quick test: diff --git a/plugins/interface_view.py b/plugins/interface_view.py index f94519c..e450f03 100644 --- a/plugins/interface_view.py +++ b/plugins/interface_view.py @@ -917,10 +917,12 @@ class _SectionSelection(_InterfaceSection): ''' if acc.childCount > 50: theme = gtk.IconTheme.get_default() - self.sel_model.append( - [theme.load_icon('gtk-dialog-warning', 24, - gtk.IconLookupFlags.USE_BUILTIN), - _('Too many selectable children'), None]) + # DEMO: skip this, will show Table then... + # TODO: fix + #self.sel_model.append( + # [theme.load_icon('gtk-dialog-warning', 24, + # gtk.IconLookupFlags.USE_BUILTIN), + # _('Too many selectable children'), None]) # Set section as insensitive, but leave expander label sensitive. section_widgets = self.expander.get_children() section_widgets.remove(self.expander.get_label_widget()) I'll take a look at this on the Accerciser side, but to me, it looks unrelated to LO by itself, just triggers that path because a Calc table has more than 50 children. @Joanmarie: Could you please check if the problem with selected cells announcement in Orca (if any) is actually related to this or has another root cause? (I currently can't check with Orca in my Fedora VM, doesn't have audio...) -- You are receiving this mail because: You are the assignee for the bug.
