forked from CastroFidel/winehelper
changes to the default fill button
This commit is contained in:
@@ -1832,8 +1832,11 @@ class WineHelperGUI(QMainWindow):
|
|||||||
self.type_groupbox = QGroupBox("Тип префикса")
|
self.type_groupbox = QGroupBox("Тип префикса")
|
||||||
type_layout = QHBoxLayout()
|
type_layout = QHBoxLayout()
|
||||||
self.type_clean_radio = QRadioButton("Чистый")
|
self.type_clean_radio = QRadioButton("Чистый")
|
||||||
|
self.type_clean_radio.setToolTip("Создает пустой префикс Wine без каких-либо дополнительных компонентов.")
|
||||||
self.type_recommended_radio = QRadioButton("С рекомендуемыми библиотеками")
|
self.type_recommended_radio = QRadioButton("С рекомендуемыми библиотеками")
|
||||||
self.type_recommended_radio.setChecked(True)
|
tooltip_text = "Устанавливает базовый набор компонентов, необходимый для большинства приложений"
|
||||||
|
self.type_recommended_radio.setToolTip(tooltip_text)
|
||||||
|
self.type_clean_radio.setChecked(True)
|
||||||
type_layout.addWidget(self.type_clean_radio)
|
type_layout.addWidget(self.type_clean_radio)
|
||||||
type_layout.addWidget(self.type_recommended_radio)
|
type_layout.addWidget(self.type_recommended_radio)
|
||||||
self.type_groupbox.setLayout(type_layout)
|
self.type_groupbox.setLayout(type_layout)
|
||||||
|
Reference in New Issue
Block a user