diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-17 16:09:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 16:09:16 +0200 |
commit | e88418ab7f1a2979ccb1ef92b4cd7da87f5cd6c5 (patch) | |
tree | 81a36f1f28eefbd0f205780c48b80a531a6364bf /launcher/ui/pages/global/MinecraftPage.ui | |
parent | 85f36ebed7e1295547cd2324d1baf7834be89c31 (diff) | |
parent | 06aba530d7154f0cff76b2d5dc650a428ff1a54e (diff) | |
download | PrismLauncher-e88418ab7f1a2979ccb1ef92b4cd7da87f5cd6c5.tar.gz PrismLauncher-e88418ab7f1a2979ccb1ef92b4cd7da87f5cd6c5.tar.bz2 PrismLauncher-e88418ab7f1a2979ccb1ef92b4cd7da87f5cd6c5.zip |
Merge pull request #1392 from Scrumplex/feat-native-override
Diffstat (limited to 'launcher/ui/pages/global/MinecraftPage.ui')
-rw-r--r-- | launcher/ui/pages/global/MinecraftPage.ui | 40 |
1 files changed, 37 insertions, 3 deletions
diff --git a/launcher/ui/pages/global/MinecraftPage.ui b/launcher/ui/pages/global/MinecraftPage.ui index 393b0f35..98e90e4e 100644 --- a/launcher/ui/pages/global/MinecraftPage.ui +++ b/launcher/ui/pages/global/MinecraftPage.ui @@ -214,21 +214,55 @@ <property name="title"> <string>Native library workarounds</string> </property> - <layout class="QVBoxLayout" name="verticalLayout_11"> - <item> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0"> <widget class="QCheckBox" name="useNativeGLFWCheck"> <property name="text"> <string>Use system installation of &GLFW</string> </property> </widget> </item> - <item> + <item row="1" column="0"> + <widget class="QLabel" name="labelGLFWPath"> + <property name="text"> + <string>&GLFW library path</string> + </property> + <property name="buddy"> + <cstring>lineEditGLFWPath</cstring> + </property> + </widget> + </item> + <item row="2" column="0"> <widget class="QCheckBox" name="useNativeOpenALCheck"> <property name="text"> <string>Use system installation of &OpenAL</string> </property> </widget> </item> + <item row="3" column="0"> + <widget class="QLabel" name="labelOpenALPath"> + <property name="text"> + <string>&OpenAL library path</string> + </property> + <property name="buddy"> + <cstring>lineEditOpenALPath</cstring> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QLineEdit" name="lineEditGLFWPath"> + <property name="enabled"> + <bool>false</bool> + </property> + </widget> + </item> + <item row="3" column="1"> + <widget class="QLineEdit" name="lineEditOpenALPath"> + <property name="enabled"> + <bool>false</bool> + </property> + </widget> + </item> </layout> </widget> </item> |