diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-03 03:21:40 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-12-03 03:53:59 +0100 |
commit | 2d626d832ba4d05fa71b9a403d5682e63fe7343c (patch) | |
tree | af728935dd66b3ef600b9c5d89904619c1e9391e | |
parent | 0c07fd231d6de047cc0037b0de37c691561e34fa (diff) | |
download | sciteco-2d626d832ba4d05fa71b9a403d5682e63fe7343c.tar.gz |
fixed rubout of last-buffer-in-ring close: avoid premature closing of the untitled buffer
-rw-r--r-- | qbuffers.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qbuffers.cpp b/qbuffers.cpp index 7269699..8948f46 100644 --- a/qbuffers.cpp +++ b/qbuffers.cpp @@ -690,11 +690,9 @@ Ring::close(void) if (current) { current->edit(); - QRegisters::hook(QRegisters::HOOK_EDIT); } else { edit((const gchar *)NULL); - undo_close(); } } |