citra_qt/configuration: Add background color config

This is actually very easy to do. I added a label and a push button for it, and used the Qt standard dialog QColorDialog for picking colors.
This commit is contained in:
zhupengfei 2018-08-02 11:36:47 +08:00
parent 4a3c4f5f67
commit 60edddac7d
No known key found for this signature in database
GPG key ID: 85B82A3E62174206
3 changed files with 38 additions and 0 deletions

View file

@ -26,4 +26,5 @@ private:
private:
std::unique_ptr<Ui::ConfigureGraphics> ui;
QColor bg_color;
};