Skip to content

Commit

Permalink
updated icons
Browse files Browse the repository at this point in the history
  • Loading branch information
RabiyaF committed Oct 7, 2024
1 parent 6e0bab4 commit 3e0c7cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rascal2/dialogs/project_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def create_buttons(self) -> list[QtWidgets.QWidget]:
A list of the widgets to be added to the bottom of the dialog, from left to right.
"""
cancel_button = QtWidgets.QPushButton(" Cancel", self)
cancel_button.setIcon(QtGui.QIcon(path_for("cancel.png")))
cancel_button.setIcon(QtGui.QIcon(path_for("cancel-light.png")))
cancel_button.clicked.connect(self.reject)
cancel_button.setStyleSheet(self._button_style.format("#E34234"))

Expand Down Expand Up @@ -272,7 +272,7 @@ def _load():

def create_buttons(self) -> list[QtWidgets.QWidget]:
load_button = QtWidgets.QPushButton(" Load", self)
load_button.setIcon(QtGui.QIcon(path_for("browse-dark.png")))
load_button.setIcon(QtGui.QIcon(path_for("load-light.png")))
load_button.clicked.connect(self.load_project)
load_button.setStyleSheet(self._button_style.format("#0D69BB"))

Expand Down Expand Up @@ -321,7 +321,7 @@ def create_form(self):

def create_buttons(self):
load_button = QtWidgets.QPushButton(" Load", self)
load_button.setIcon(QtGui.QIcon(path_for("browse-dark.png")))
load_button.setIcon(QtGui.QIcon(path_for("load-light.png")))
load_button.clicked.connect(self.load_project)
load_button.setStyleSheet(self._button_style.format("#0D69BB"))

Expand Down
Binary file added rascal2/static/images/load-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3e0c7cc

Please sign in to comment.