Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Update Window title
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Blacher <[email protected]>
  • Loading branch information
Benjamin Blacher committed Mar 31, 2022
1 parent cb8ffd2 commit 282b781
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GUI/win_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def retranslateUi(self, win_main):
#if QT_CONFIG(shortcut)
self.actionOpen.setShortcut(QCoreApplication.translate("win_main", u"Ctrl+O", None))
#endif // QT_CONFIG(shortcut)
self.label.setText(QCoreApplication.translate("win_main", u"RC-Car Data Analysis App", None))
self.label.setText(QCoreApplication.translate("win_main", u"Automotion Desktop App", None))
self.overview_to_table.setText(QCoreApplication.translate("win_main", u"Table View", None))
self.overview_to_plot.setText(QCoreApplication.translate("win_main", u"Plot View", None))
self.overview_to_map.setText(QCoreApplication.translate("win_main", u"Map View", None))
Expand Down
2 changes: 1 addition & 1 deletion GUI/win_main.ui
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</font>
</property>
<property name="text">
<string>RC-Car Data Analysis App</string>
<string>Automotion Desktop App</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from shutil import copy # File copy operations
import os # path operations

windowtitle = "RC-Car Viewer" # window title
windowtitle = "Automotion Desktop App" # window title
plotinitialized = False # check for first time plotting
data = [] # init data array
plots = [] # init plots array
Expand Down

0 comments on commit 282b781

Please sign in to comment.