Skip to content

Commit de0096b

Browse files
author
Malah
committed
correct GUI
1 parent a197ab3 commit de0096b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
0 Bytes
Binary file not shown.

QuickHide/QH_GUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void DrawSettings(int id) {
186186
GUILayout.BeginHorizontal ();
187187
GUILayout.Box (QLang.translate ("Mods"), GUILayout.Height (30));
188188
GUILayout.EndHorizontal ();
189-
scrollPosition = GUILayout.BeginScrollView (scrollPosition, GUILayout.Width (880), GUILayout.Height (300));
189+
scrollPosition = GUILayout.BeginScrollView (scrollPosition, GUILayout.ExpandWidth(true), GUILayout.Height (300));
190190
DrawAppLauncherButtons ();
191191
GUILayout.EndScrollView ();
192192
QLang.DrawLang ();

QuickHide/QH_Hide.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,20 +240,20 @@ internal void DrawAppLauncherButtons() {
240240
GUILayout.Label (string.Format ("<b>{0}</b>", _qMods.ModName), GUILayout.Width (200));
241241
bool _CanBePin = _qMods.CanBePin;
242242
GUILayout.FlexibleSpace ();
243-
_CanBePin = GUILayout.Toggle (_CanBePin, QLang.translate ("Can be pin for the AutoHide"), GUILayout.Width (225));
243+
_CanBePin = GUILayout.Toggle (_CanBePin, QLang.translate ("Can be pin for the AutoHide"), GUILayout.Width (300));
244244
if (_CanBePin != _qMods.CanBePin) {
245245
_qMods.CanBePin = _CanBePin;
246246
}
247247
bool _CanBeHide = _qMods.CanBeHide;
248248
GUILayout.FlexibleSpace ();
249-
_CanBeHide = GUILayout.Toggle (_CanBeHide, QLang.translate ("Can be hidden"), GUILayout.Width (140));
249+
_CanBeHide = GUILayout.Toggle (_CanBeHide, QLang.translate ("Can be hidden"), GUILayout.Width (200));
250250
if (_CanBeHide != _qMods.CanBeHide) {
251251
_qMods.CanBeHide = _CanBeHide;
252252
}
253253
if (_CanBeHide) {
254254
bool _CanSetFalse = _qMods.CanSetFalse;
255255
GUILayout.FlexibleSpace ();
256-
_CanSetFalse = GUILayout.Toggle (_CanSetFalse, QLang.translate ("Set to False the button on hide"), GUILayout.Width (250));
256+
_CanSetFalse = GUILayout.Toggle (_CanSetFalse, QLang.translate ("Set to False the button on hide"), GUILayout.Width (400));
257257
if (_CanSetFalse != _qMods.CanSetFalse) {
258258
_qMods.CanSetFalse = _CanSetFalse;
259259
}

0 commit comments

Comments
 (0)