From 67a4909d3fe359614d77196fe6857e9f1115186b Mon Sep 17 00:00:00 2001 From: kmkom Date: Tue, 17 Jun 2025 17:41:35 +0200 Subject: [PATCH] Fix MRU settings Initialize the view according to the saved MRU-setting. --- usr/lib/bulky/bulky.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr/lib/bulky/bulky.py b/usr/lib/bulky/bulky.py index a10b51f..fb356df 100755 --- a/usr/lib/bulky/bulky.py +++ b/usr/lib/bulky/bulky.py @@ -310,6 +310,11 @@ def __init__(self, application): self.infobar = self.builder.get_object("infobar") self.error_label = self.builder.get_object("error_label") + # Ini "MRU"-view + self.on_operation_changed(self.combo_operation) + self.on_scope_changed(self.combo_scope) + + # Replace widgets self.find_entry = self.builder.get_object("find_entry") self.replace_entry = self.builder.get_object("replace_entry")