forked from j62/ctbrec
1
0
Fork 0

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:
0xboobface 2019-04-11 15:33:08 +02:00
parent d6482c5558
commit 348019d8e0
1 changed files with 1 additions and 1 deletions

View File

@ -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));