mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-25 00:38:12 -05:00
Fix Alt+h messing up all buffers
This commit is contained in:
parent
b0671fe336
commit
8fbc0a5c62
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ export const keybindings = [
|
||||||
var lastMsg = buf.messages[buf.messages.length - 1];
|
var lastMsg = buf.messages[buf.messages.length - 1];
|
||||||
app.setReceipt(buf.name, ReceiptType.READ, lastMsg);
|
app.setReceipt(buf.name, ReceiptType.READ, lastMsg);
|
||||||
}
|
}
|
||||||
buffers.set(buf.name, {
|
buffers.set(buf.id, {
|
||||||
...buf,
|
...buf,
|
||||||
unread: Unread.NONE,
|
unread: Unread.NONE,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue