forked from j62/ctbrec
Add warning to max resolution
Add the warning to the tooltip: Caution: If the resolution is unknown, ctbrec will not record the stream!
This commit is contained in:
parent
d6482c5558
commit
348019d8e0
|
@ -294,7 +294,7 @@ public class SettingsTab extends Tab implements TabSelectionListener {
|
|||
GridPane.setMargin(splitAfter, new Insets(0, 0, 0, CHECKBOX_MARGIN));
|
||||
|
||||
l = new Label("Maximum resolution (0 = unlimited)");
|
||||
Tooltip tt = new Tooltip("video height, e.g. 720 or 1080");
|
||||
Tooltip tt = new Tooltip("video height, e.g. 720 or 1080\n!Caution: If the resolution is unknown, ctbrec will not record the stream!");
|
||||
l.setTooltip(tt);
|
||||
layout.add(l, 0, row);
|
||||
maxResolution = new TextField(Integer.toString(Config.getInstance().getSettings().maximumResolution));
|
||||
|
|
Loading…
Reference in New Issue