Skip to content

Commit

Permalink
Merge pull request #33 from nasshu2916/feature/recorder-message
Browse files Browse the repository at this point in the history
footer の MessageType 変更
  • Loading branch information
nasshu2916 authored Jan 14, 2025
2 parents b99c1a9 + d42db32 commit ee09723
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Assets/ArtNet/Editor/DmxRecorder/RecorderWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,13 @@ private void StatusMessagesGUI()
switch (_controller.Status)
{
case RecordingStatus.Recording:
ShowMessageInStatusBar("Recording", MessageType.Info);
ShowMessageInStatusBar("Recording", MessageType.None);
break;
case RecordingStatus.Paused:
ShowMessageInStatusBar("Paused", MessageType.Warning);
ShowMessageInStatusBar("Paused", MessageType.None);
break;
case RecordingStatus.None:
ShowMessageInStatusBar("Ready", MessageType.Info);
ShowMessageInStatusBar("Ready", MessageType.None);
break;
default:
throw new ArgumentOutOfRangeException();
Expand Down

0 comments on commit ee09723

Please sign in to comment.