DolphinQt: Make scrubbing configurable in convert dialog

This commit is contained in:
JosJuice
2020-04-11 13:06:45 +02:00
parent 6ffcbcee70
commit acd00723ad
4 changed files with 50 additions and 14 deletions

View File

@ -11,6 +11,7 @@
#include "DiscIO/Blob.h"
class QCheckBox;
class QComboBox;
namespace UICommon
@ -32,6 +33,9 @@ private slots:
private:
void AddToFormatComboBox(const QString& name, DiscIO::BlobType format);
bool ShowAreYouSureDialog(const QString& text);
QComboBox* m_format;
QCheckBox* m_scrub;
QList<std::shared_ptr<const UICommon::GameFile>> m_files;
};