1
0
Fork 0
mirror of synced 2024-06-03 03:04:42 +12:00

Better text for pre launch command

This commit is contained in:
Dummerle 2022-03-21 21:06:19 +01:00
parent b996aac3f7
commit 44e0bbb14a
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ class GameSettings(DefaultGameSettings):
super(GameSettings, self).__init__(False, parent)
self.pre_launch_settings = PreLaunchSettings()
self.launch_settings_group.layout().addRow(
QLabel("pre launch"), self.pre_launch_settings
QLabel(self.tr("Pre launch command")), self.pre_launch_settings
)
self.cloud_save_path_edit = PathEdit(

View file

@ -17,7 +17,7 @@ class PreLaunchSettings(QHBoxLayout):
self.core = LegendaryCoreSingleton()
self.edit = IndicatorLineEdit(
text="",
placeholder=self.tr("Pre launch command"),
placeholder=self.tr("Path to script"),
edit_func=self.edit_command,
save_func=self.save_pre_launch_command,
)