Remove vertical chat divider in fullscreen overlay mode

Fixes #397
This commit is contained in:
Tommy Chow
2024-09-15 23:42:51 -07:00
parent 4f7258c635
commit 94a63900a4

View File

@ -289,12 +289,10 @@ class _VideoChatState extends State<VideoChat> {
children: settingsStore.landscapeChatLeftSide
? [
overlayChat,
const VerticalDivider(),
Expanded(child: overlay),
]
: [
Expanded(child: overlay),
const VerticalDivider(),
overlayChat,
],
),