From f90a37202d4318a56dfce1d727e355b27a9dba83 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Fri, 14 Jan 2022 10:52:18 -0800 Subject: [PATCH] Fix compilation error on Setting constructor --- src/core/io/video/video_format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/io/video/video_format.cpp b/src/core/io/video/video_format.cpp index e43b2162..f3665324 100644 --- a/src/core/io/video/video_format.cpp +++ b/src/core/io/video/video_format.cpp @@ -816,7 +816,7 @@ std::unique_ptr glaxnimate::io::video::VideoFormat return std::make_unique(app::settings::SettingList{ // slug label description default min max app::settings::Setting{"bit_rate", tr("Bitrate"), tr("Video bit rate"), 5000, 0, 10000}, - app::settings::Setting{"background", tr("Background"), tr("Background color"), QColor(0, 0, 0, 0))}, + app::settings::Setting{"background", tr("Background"), tr("Background color"), QColor(0, 0, 0, 0)}, app::settings::Setting{"width", tr("Width"), tr("If not 0, it will overwrite the size"), document->main()->width.get(), 0, 10000}, app::settings::Setting{"height", tr("Height"), tr("If not 0, it will overwrite the size"), document->main()->height.get(),0, 10000}, app::settings::Setting{"verbose", tr("Verbose"), tr("Show verbose information on the conversion"), false},