1
0
Fork 0
mirror of synced 2024-05-18 11:32:50 +12:00

WineSettings: Order executable before prefix

This commit is contained in:
loathingKernel 2024-02-16 12:27:06 +02:00
parent 582b83c12b
commit e776ed457a
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -44,8 +44,8 @@ class WineSettings(QGroupBox):
)
layout = QFormLayout(self)
layout.addRow(self.tr("Prefix"), self.wine_prefix)
layout.addRow(self.tr("Executable"), self.wine_exec)
layout.addRow(self.tr("Prefix"), self.wine_prefix)
layout.setFieldGrowthPolicy(QFormLayout.ExpandingFieldsGrow)
layout.setLabelAlignment(Qt.AlignRight | Qt.AlignVCenter)
layout.setFormAlignment(Qt.AlignLeading | Qt.AlignTop)