Skip to content

Commit

Permalink
Fixed checkChange settings not being heeded
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stigsen committed Aug 17, 2010
1 parent 0d615a6 commit e101629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EditorFrame.cpp
Expand Up @@ -3562,7 +3562,7 @@ void EditorFrame::OnActivate(wxActivateEvent& event) {
if (!m_inAskReload) {
// Should we check for changed files?
bool doCheckChange = true; // default
m_settings.GetSettingBool(wxT("checkChange"), doCheckChange);
m_generalSettings.GetSettingBool(wxT("checkChange"), doCheckChange);

// Check if any open files have been modified (in separate thread)
if (doCheckChange)
Expand Down

0 comments on commit e101629

Please sign in to comment.