diff options
| author | 2016-11-05 02:58:11 -0600 | |
|---|---|---|
| committer | 2016-11-05 03:46:43 -0600 | |
| commit | d9305b0a074a255eb484911db70a126a6fe347b1 (patch) | |
| tree | fcd629c513d4c8d217bf89069b288a39debb594f /src/citra_qt/configure_graphics.cpp | |
| parent | Rework frame layouts to use a max rectangle instead of hardcoded calculations (diff) | |
| download | yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.gz yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.xz yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.zip | |
Add default hotkey to swap primary screens.
Also minor style changes
Diffstat (limited to '')
| -rw-r--r-- | src/citra_qt/configure_graphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/configure_graphics.cpp b/src/citra_qt/configure_graphics.cpp index c6c28197e..29834e11b 100644 --- a/src/citra_qt/configure_graphics.cpp +++ b/src/citra_qt/configure_graphics.cpp | |||
| @@ -32,7 +32,8 @@ void ConfigureGraphics::applyConfiguration() { | |||
| 32 | Settings::values.use_shader_jit = ui->toggle_shader_jit->isChecked(); | 32 | Settings::values.use_shader_jit = ui->toggle_shader_jit->isChecked(); |
| 33 | Settings::values.use_scaled_resolution = ui->toggle_scaled_resolution->isChecked(); | 33 | Settings::values.use_scaled_resolution = ui->toggle_scaled_resolution->isChecked(); |
| 34 | Settings::values.use_vsync = ui->toggle_vsync->isChecked(); | 34 | Settings::values.use_vsync = ui->toggle_vsync->isChecked(); |
| 35 | Settings::values.layout_option = static_cast<Settings::LayoutOption>(ui->layout_combobox->currentIndex()); | 35 | Settings::values.layout_option = |
| 36 | static_cast<Settings::LayoutOption>(ui->layout_combobox->currentIndex()); | ||
| 36 | Settings::values.swap_screen = ui->swap_screen->isChecked(); | 37 | Settings::values.swap_screen = ui->swap_screen->isChecked(); |
| 37 | Settings::Apply(); | 38 | Settings::Apply(); |
| 38 | } | 39 | } |