diff --git a/gramps/plugins/view/fanchart2wayview.py b/gramps/plugins/view/fanchart2wayview.py index 879b11b76..baa1625b8 100644 --- a/gramps/plugins/view/fanchart2wayview.py +++ b/gramps/plugins/view/fanchart2wayview.py @@ -108,9 +108,6 @@ class FanChart2WayView(fanchart2way.FanChart2WayGrampsGUI, NavigationView): self.additional_uis.append(FanChartView.additional_ui) self.allfonts = [x for x in enumerate(SystemFonts().get_system_fonts())] - self.func_list.update({ - 'J' : self.jump, - }) self.uistate.connect('font-changed', self.font_changed) def font_changed(self): diff --git a/gramps/plugins/view/fanchartdescview.py b/gramps/plugins/view/fanchartdescview.py index 34a346925..8645522d7 100644 --- a/gramps/plugins/view/fanchartdescview.py +++ b/gramps/plugins/view/fanchartdescview.py @@ -103,9 +103,6 @@ class FanChartDescView(fanchartdesc.FanChartDescGrampsGUI, NavigationView): self.additional_uis.append(FanChartView.additional_ui) self.allfonts = [x for x in enumerate(SystemFonts().get_system_fonts())] - self.func_list.update({ - 'J' : self.jump, - }) self.uistate.connect('font-changed', self.font_changed) def font_changed(self): diff --git a/gramps/plugins/view/fanchartview.py b/gramps/plugins/view/fanchartview.py index 059b48d63..6631380cd 100644 --- a/gramps/plugins/view/fanchartview.py +++ b/gramps/plugins/view/fanchartview.py @@ -98,9 +98,6 @@ class FanChartView(fanchart.FanChartGrampsGUI, NavigationView): self.additional_uis.append(self.additional_ui) self.allfonts = [x for x in enumerate(SystemFonts().get_system_fonts())] - self.func_list.update({ - 'J' : self.jump, - }) self.uistate.connect('font-changed', self.font_changed) def font_changed(self): diff --git a/gramps/plugins/view/pedigreeview.py b/gramps/plugins/view/pedigreeview.py index 860c55387..475dc4584 100644 --- a/gramps/plugins/view/pedigreeview.py +++ b/gramps/plugins/view/pedigreeview.py @@ -260,8 +260,6 @@ class PersonBoxWidgetCairo(_PersonWidgetBase): alh = self.get_allocated_height() if not self.textlayout: self.textlayout = PangoCairo.create_layout(context) - if is_quartz(): - PangoCairo.context_set_resolution(self.textlayout.get_context(), 72) # The following seems like it Should work, but it doesn't # font_desc = self.get_style_context().get_property( # "font", Gtk.StateFlags.NORMAL) @@ -571,10 +569,6 @@ class PedigreeView(NavigationView): self.show_unknown_people = self._config.get( 'interface.pedview-show-unknown-people') - self.func_list.update({ - 'J' : self.jump, - }) - # use symbols self.symbols = Symbols() self.uistate.connect('font-changed', self.reload_symbols) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 1365c00b8..c1e1441a4 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -80,6 +80,7 @@ from gramps.gen.display.place import displayer as _pd from gramps.gen.proxy import CacheProxyDb from gramps.plugins.lib.libhtmlconst import _CHARACTER_SETS, _CC, _COPY_OPTIONS from gramps.gen.relationship import get_relationship_calculator +from gramps.gen.filters import reload_custom_filters #------------------------------------------------ # specific narrative web import @@ -2172,6 +2173,7 @@ class NavWebOptions(MenuReportOptions): Update the filter list based on the selected person """ gid = self.__pid.get_value() + reload_custom_filters() person = self.__db.get_person_from_gramps_id(gid) filter_list = utils.get_person_filters(person, include_single=False) self.__filter.set_filters(filter_list)