Skip to content

Commit

Permalink
Corrected the pages.ui and stylesheet.qss path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr-Adarsh committed Oct 18, 2024
1 parent 10ebeb8 commit f324831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GUI/GUI_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self):
super(Mygui, self).__init__()

# Load the .ui file
uic.loadUi("Student-Management-System\\GUI\\pages.ui", self)
uic.loadUi("GUI\\pages.ui", self)

self.tableWidget = self.findChild(QTableWidget, "tableWidget")
self.pushButton_6.clicked.connect(self.display_records)
Expand Down Expand Up @@ -253,7 +253,7 @@ def main():
app = QApplication([])

# Load the external stylesheet
load_stylesheet(app, "Student-Management-System/GUI/stylesheet.qss")
load_stylesheet(app, "GUI/stylesheet.qss")
window = Mygui()
app.exec_()

Expand Down

0 comments on commit f324831

Please sign in to comment.