mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-02 13:02:44 +01:00
Update main.cpp
This commit is contained in:
parent
5b0136dafe
commit
c6feb95d8d
1 changed files with 5 additions and 1 deletions
|
@ -3532,7 +3532,11 @@ void GMainWindow::ResetWindowSize720() {
|
|||
}
|
||||
|
||||
void GMainWindow::ResetWindowSize800() {
|
||||
ResetWindowSize(1280U, 800U);
|
||||
if (!ui->action_Single_Window_Mode->isChecked()) {
|
||||
render_window->resize(1280, 800);
|
||||
} else {
|
||||
resize(1280, 800);
|
||||
}
|
||||
}
|
||||
|
||||
void GMainWindow::ResetWindowSize900() {
|
||||
|
|
Loading…
Reference in a new issue