Преглед на файлове

Fix face sliders enabled when there are no maids

habeebweeb преди 4 години
родител
ревизия
a30fd6e700
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. 3 0
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Panes/FaceWindowPanes/MaidFaceSliderPane.cs

+ 3 - 0
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Panes/FaceWindowPanes/MaidFaceSliderPane.cs

@@ -162,6 +162,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
 
         public override void Draw()
         {
+            GUI.enabled = this.meidoManager.HasActiveMeido;
             GUILayoutOption sliderWidth = MiscGUI.HalfSlider;
             for (int i = 0; i < faceKeys.Length; i += 2)
             {
@@ -190,6 +191,8 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
                 }
                 GUILayout.EndHorizontal();
             }
+
+            GUI.enabled = true;
         }
     }
 }