From b03538c52487cfacaceec771f50a5349fd341859 Mon Sep 17 00:00:00 2001 From: Naoshige Tozawa <42102311+Dolphiiiin@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:59:46 +0900 Subject: [PATCH] =?UTF-8?q?ffmpeg=20Option=E3=81=AE=E3=82=BB=E3=83=BC?= =?UTF-8?q?=E3=83=96=E3=81=8C=E6=AD=A3=E5=B8=B8=E3=81=AB=E5=8B=95=E4=BD=9C?= =?UTF-8?q?=E3=81=97=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playblast_ffmpeg.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playblast_ffmpeg.py b/playblast_ffmpeg.py index 75f7ba3..b6ed80f 100644 --- a/playblast_ffmpeg.py +++ b/playblast_ffmpeg.py @@ -160,6 +160,8 @@ def reflect_optionVar_to_window(self, widget_list): widget.setCurrentIndex(value) elif widget_type == 'QRadioButton': widget.setChecked(value) + elif widget_type == 'QTextEdit': + widget.setPlainText(value) else: debug(f"Unsupported widget type: {widget_type} ({widget_name})", 'error') debug("Exiting reflect_optionVar_to_window", 'trace')