diff --git a/Packages/idv.jlchntoz.vvmw/Runtime/VVMW/UIHandler_Progress.cs b/Packages/idv.jlchntoz.vvmw/Runtime/VVMW/UIHandler_Progress.cs index 1177481..24c5b7c 100644 --- a/Packages/idv.jlchntoz.vvmw/Runtime/VVMW/UIHandler_Progress.cs +++ b/Packages/idv.jlchntoz.vvmw/Runtime/VVMW/UIHandler_Progress.cs @@ -41,7 +41,7 @@ void UpdateProgressOnce() { progressSlider.interactable = false; } } else { - SetStatusEnabled(false); + SetStatusEnabled(!string.IsNullOrEmpty(core.title)); var time = TimeSpan.FromSeconds(core.Time); var durationTS = TimeSpan.FromSeconds(duration); SetText(durationText, durationTMPro, string.Format(languageManager.GetLocale("TimeFormat"), durationTS)); @@ -59,4 +59,4 @@ void UpdateProgressOnce() { } } } -} \ No newline at end of file +}