From eefc15f383c694cb8f08b02330c6d5b46f2256b5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 31 Jan 2022 20:26:54 +0100 Subject: [PATCH] fixup! Rather hacky support for burnt subtitle Z-position in 3D (#1359). Allow -ve values. --- src/wx/text_panel.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index 980d8fd27..718e65f81 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -128,6 +128,7 @@ TextPanel::create () _x_scale->SetRange (0, 1000); _y_scale->SetRange (0, 1000); _line_spacing->SetRange (0, 1000); + _z_position->SetRange (-100, 100); _reference->Bind (wxEVT_CHECKBOX, boost::bind (&TextPanel::reference_clicked, this)); _use->Bind (wxEVT_CHECKBOX, boost::bind (&TextPanel::use_toggled, this)); -- 2.30.2