From a55061487ff60e2162db2579302a2fab10d24959 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sun, 16 Apr 2023 16:40:57 +0200 Subject: [PATCH] Scroll to top after result If the input got processed correctly, let the user read the results page from the beginning. Signed-off-by: Georg Pfuetzenreuter --- OOMAnalyser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/OOMAnalyser.py b/OOMAnalyser.py index 7c0bb3d..876f2a5 100644 --- a/OOMAnalyser.py +++ b/OOMAnalyser.py @@ -4540,6 +4540,7 @@ class OOMDisplay: if success: self.oom_result = analyser.oom_result self.show_oom_details() + scroll(0,0) # self.update_toc() def load_from_form(self):