소스 검색

Fix error when reloading translation for pose pane

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

+ 2 - 0
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Panes/PoseWindowPanes/MaidPoseSelectorPane.cs

@@ -67,6 +67,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
 
         protected override void ReloadTranslation()
         {
+            this.updating = true;
             this.poseModeGrid.SetItems(Translation.GetArray("posePane", tabTranslations));
             if (!customPoseMode)
             {
@@ -74,6 +75,7 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
                     Translation.GetArray("poseGroupDropdown", Constants.PoseGroupList)
                 );
             }
+            this.updating = false;
         }
 
         public override void Draw()