From b2faf00fa3d4f47a4e458ba4e9a3ab510a6a082d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Pinkava?= Date: Mon, 16 Sep 2024 09:08:00 +0200 Subject: [PATCH] BIM: drop unnecessary setPixmap from wellcome window The image is already set in the UI file, it is not necessary to set it again --- src/Mod/BIM/bimcommands/BimWelcome.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Mod/BIM/bimcommands/BimWelcome.py b/src/Mod/BIM/bimcommands/BimWelcome.py index 0306d65998..5c72e1a32f 100644 --- a/src/Mod/BIM/bimcommands/BimWelcome.py +++ b/src/Mod/BIM/bimcommands/BimWelcome.py @@ -46,9 +46,6 @@ class BIM_Welcome: # load dialog self.form = FreeCADGui.PySideUic.loadUi(":ui/dialogWelcome.ui") - # set the title image - self.form.image.setPixmap(QtGui.QPixmap(":/icons/banner.png")) - # handle the tutorial links self.form.label_4.linkActivated.connect(self.handleLink) self.form.label_7.linkActivated.connect(self.handleLink)