We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f477b8d commit cd19dd5Copy full SHA for cd19dd5
pippy_app.py
@@ -243,13 +243,14 @@ def initialize_display(self):
243
244
view_btn = ToolbarButton()
245
view_toolbar = DevelopViewToolbar(self)
246
- view_btn.props.page = view_toolbar
+ view_btn.set_page(view_toolbar)
247
view_btn.props.icon_name = 'toolbar-view'
248
view_btn.props.label = _('View')
249
view_toolbar.connect('font-size-changed',
250
self._font_size_changed_cb)
251
self.get_toolbar_box().toolbar.insert(view_btn, -1)
252
self.view_toolbar = view_toolbar
253
+ view_btn.show()
254
view_toolbar.show()
255
256
actions_toolbar = self.get_toolbar_box().toolbar
0 commit comments