Update Recording Indicator Text
Different wording was unnecessary, simpler to just go off the assumption that pausing would override forced.
This commit is contained in:
parent
410302560b
commit
a55a92087c
|
@ -501,11 +501,10 @@ public class ThumbCell extends StackPane {
|
|||
modelRecordingState = ModelRecordingState.RECORDING;
|
||||
if (model.isForcePriority()) {
|
||||
recordingIndicator.setImage(imgForceRecordIndicator);
|
||||
recordingIndicatorTooltip.setText("Pause Recording (Resets Forced)");
|
||||
} else {
|
||||
recordingIndicator.setImage(imgRecordIndicator);
|
||||
recordingIndicatorTooltip.setText("Pause Recording");
|
||||
}
|
||||
recordingIndicatorTooltip.setText("Pause Recording");
|
||||
}
|
||||
} else {
|
||||
if (model.isMarkedForLaterRecording()) {
|
||||
|
|
Loading…
Reference in New Issue