Skip to content

Commit

Permalink
Interface: Fix trying to render and undefined note
Browse files Browse the repository at this point in the history
Fixes: issue #1244
  • Loading branch information
dscharrer committed Aug 12, 2018
1 parent de03cef commit 2ac23b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/Interface.cpp
Expand Up @@ -476,9 +476,10 @@ void ARX_INTERFACE_NoteManage() {

if(openNote.manageActions()) {
ARX_INTERFACE_NoteClose();
} else {
openNote.render();
}

openNote.render();
}


Expand Down

0 comments on commit 2ac23b3

Please sign in to comment.