mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-11 12:44:59 +03:00
buffer: increment timestamp on notify saved
This commit is contained in:
parent
d2f811a8d5
commit
2523c4955b
@ -392,8 +392,12 @@ bool Buffer::is_modified() const
|
|||||||
void Buffer::notify_saved()
|
void Buffer::notify_saved()
|
||||||
{
|
{
|
||||||
size_t history_cursor_index = m_history_cursor - m_history.begin();
|
size_t history_cursor_index = m_history_cursor - m_history.begin();
|
||||||
|
if (m_last_save_undo_index != history_cursor_index)
|
||||||
|
{
|
||||||
|
++m_timestamp;
|
||||||
m_last_save_undo_index = history_cursor_index;
|
m_last_save_undo_index = history_cursor_index;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Buffer::add_change_listener(BufferChangeListener& listener) const
|
void Buffer::add_change_listener(BufferChangeListener& listener) const
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user