소스 검색

Fix main window visibility on maid undress

Undressing all the maids would make the GUI visible which is not
intended.
habeebweeb 4 년 전
부모
커밋
1d0332ca75
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Windows/MainWindow.cs

+ 1 - 5
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Windows/MainWindow.cs

@@ -135,11 +135,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
                 Constants.Window newWindow = args.IsBody ? Constants.Window.Pose : Constants.Window.Face;
                 ChangeWindow(newWindow);
             }
-            else
-            {
-                currentWindowPane.UpdatePanes();
-                Visible = true;
-            }
+            else currentWindowPane.UpdatePanes();
         }
 
         private void ChangeWindow(Constants.Window window)