Skip to content

Commit

Permalink
Fix compilation error on Setting constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Jan 14, 2022
1 parent bf7d329 commit f90a372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/io/video/video_format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ std::unique_ptr<app::settings::SettingsGroup> glaxnimate::io::video::VideoFormat
return std::make_unique<app::settings::SettingsGroup>(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},
Expand Down

0 comments on commit f90a372

Please sign in to comment.