Skip to content

Commit

Permalink
fix: The issue of shutdown and restart is fixed
Browse files Browse the repository at this point in the history
The issue of shutdown and restart is fixed

Log: The issue of shutdown and restart is fixed
  • Loading branch information
pengfeixx committed Dec 3, 2024
1 parent 0cd7861 commit 1df3cfd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/view/web_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ void WebWindow::closeEvent(QCloseEvent *event)
{
//保存窗口大小
saveWindowSize();
QWidget::closeEvent(event);
QApplication::exit(0);
_Exit(0);
}

/**
Expand Down

0 comments on commit 1df3cfd

Please sign in to comment.