Skip to content

Commit

Permalink
typo corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
janinainfa committed Jul 9, 2024
1 parent 8197572 commit 7a25ffe
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
22 changes: 12 additions & 10 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
import process_command as pc

if __name__ == "__main__":
print("Uruchamianie...")
commandProcessing = pc.CommandProcessing()
main_window.buildApp(commandProcessing)
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def createCommandLabelsAndButtons(self):
self.commandsLayout.addWidget(self.newCommandButton, len(sections) + 2, 0, 1, 3)
self.openConfigFileButton = QtWidgets.QPushButton(self)
self.openConfigFileButton.setText("Otwórz plik konfiguracyjny")
self.openConfigFileButton.pressed.connect(lambda: subprocess.Popen(["xed", "/etc/mex-assistant/config.ini"]))
self.openConfigFileButton.pressed.connect(lambda: subprocess.Popen(["xed", "/etc/mexassistant/config.ini"]))
self.commandsLayout.addWidget(self.openConfigFileButton, len(sections) + 3, 0, 1, 3)

self.gridLayout.addLayout(self.commandsLayout, 2, 0, 1, 3)
Expand Down

0 comments on commit 7a25ffe

Please sign in to comment.