feat: add tab pop-out

This commit is contained in:
Anna
2022-02-18 13:35:46 -05:00
parent fed6b9c5a6
commit 04783fcf02
4 changed files with 57 additions and 2 deletions
+2
View File
@@ -136,6 +136,7 @@ internal class Tab {
public UnreadMode UnreadMode = UnreadMode.Unseen;
public bool DisplayTimestamp = true;
public InputChannel? Channel;
public bool PopOut;
[NonSerialized]
public uint Unread;
@@ -184,6 +185,7 @@ internal class Tab {
UnreadMode = this.UnreadMode,
DisplayTimestamp = this.DisplayTimestamp,
Channel = this.Channel,
PopOut = this.PopOut,
};
}
}