From a1439b6fb9c99d13bebebc00377c79316a76e469 Mon Sep 17 00:00:00 2001 From: Agsha Athalla Nurkareem <agshaathalla@gmail.com> Date: Tue, 4 Apr 2023 01:33:30 +0700 Subject: [PATCH] update Dashboard --- src/dashboard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dashboard.py b/src/dashboard.py index 6c09ac1..deea84a 100644 --- a/src/dashboard.py +++ b/src/dashboard.py @@ -57,7 +57,7 @@ class dashboard(QWidget): # masukkan logo logo = QLabel(self) - logo.setPixmap(QPixmap('../img/logo-dashboard.png')) + logo.setPixmap(QPixmap('img/logo-dashboard.png')) logo.move(60, 45) # tombol home @@ -143,7 +143,7 @@ class dashboard(QWidget): # foto profil profilePhoto = QLabel(self) - profilePhoto.setPixmap(QPixmap('../img/profile-dashboard.png')) + profilePhoto.setPixmap(QPixmap('img/profile-dashboard.png')) profilePhoto.move(1133, 45) # say Hello @@ -180,7 +180,7 @@ class dashboard(QWidget): # membuat history card card = QLabel(self) - card.setPixmap(QPixmap('../img/card-dashboard.png')) + card.setPixmap(QPixmap('img/card-dashboard.png')) card.move(633, 172) kiri = QPushButton(self) -- GitLab