From 620ef537aaea58854d1e5f85f7edc23ddeef8030 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Thu, 26 Oct 2023 12:24:52 +0200 Subject: [PATCH] ScreenRecorder: Add a label to the FPS spinbox For some reason I never noticed that it was missing. Fixes: QTCREATORBUG-29809 Change-Id: I1da933d3e220c035ecdeb2f0a5d044d68081b413 Reviewed-by: Leena Miettinen Reviewed-by: Eike Ziller --- src/plugins/screenrecorder/record.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/screenrecorder/record.cpp b/src/plugins/screenrecorder/record.cpp index 40efe047911..cade82dbe9c 100644 --- a/src/plugins/screenrecorder/record.cpp +++ b/src/plugins/screenrecorder/record.cpp @@ -96,6 +96,8 @@ RecordOptionsDialog::RecordOptionsDialog(QWidget *parent) m_cropScene = new CropScene; + m_recordFrameRate.setLabelText(Tr::tr("FPS:")); + m_resetButton = new QToolButton; m_resetButton->setIcon(Icons::RESET.icon());