Skip to content

Commit

Permalink
Leaving whitespaces in if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoBibboVoicemod committed May 10, 2024
1 parent 3a1a23a commit 3e97e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ void UpdateDialog::OnClose(wxCloseEvent&)
// If the update was not downloaded and the appcast is empty and we're closing,
// it means that we're about to restart or there was an error, and that the
// window-close event wasn't initiated by the user.
if (m_appcast.IsValid() && m_updateFile.IsEmpty() && !m_errorOccurred)
if ( m_appcast.IsValid() && m_updateFile.IsEmpty() && !m_errorOccurred )
ApplicationController::NotifyUpdateCancelled();

ApplicationController::NotifyUpdateClosed();
Expand Down

0 comments on commit 3e97e30

Please sign in to comment.