소스 검색

Fix face blend dropdown enabled with no maids

habeebweeb 4 년 전
부모
커밋
c0a5cfd603
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Panes/FaceWindowPanes/MaidFaceBlendPane.cs

+ 1 - 1
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Panes/FaceWindowPanes/MaidFaceBlendPane.cs

@@ -114,7 +114,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
             GUILayout.EndHorizontal();
 
             GUILayout.BeginHorizontal();
-            GUI.enabled = faceListEnabled;
+            GUI.enabled = GUI.enabled && faceListEnabled;
             facePrevButton.Draw(arrowLayoutOptions);
             faceBlendDropdown.Draw(dropdownLayoutOptions);
             faceNextButton.Draw(arrowLayoutOptions);