Skip to content

Commit

Permalink
Replaced repeating string with variable
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevisanGMW committed Nov 9, 2021
1 parent a062ccf commit 40d9c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-scripts/gt_path_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(self, parent=maya_main_window()):
def create_widgets(self):
''' Create Widgets '''
# Title
self.title_label = QtWidgets.QLabel("GT Path Manager")
self.title_label = QtWidgets.QLabel(script_name)
self.title_label.setStyleSheet('background-color: rgb(93, 93, 93); \
border: 0px solid rgb(93, 93, 93); \
color: rgb(255, 255, 255);\
Expand Down

0 comments on commit 40d9c8d

Please sign in to comment.