mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
26 lines
754 B
Diff
26 lines
754 B
Diff
From de706cd1c2fcca44f8c04467f675477045572670 Mon Sep 17 00:00:00 2001
|
|
From: SpiritCroc <dev@spiritcroc.de>
|
|
Date: Sun, 27 Oct 2024 19:24:26 +0100
|
|
Subject: Enable chat previews by default
|
|
|
|
---
|
|
src/stores/room-list/ListLayout.ts | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/stores/room-list/ListLayout.ts b/src/stores/room-list/ListLayout.ts
|
|
index 275b6d330b..3a188451e7 100644
|
|
--- a/src/stores/room-list/ListLayout.ts
|
|
+++ b/src/stores/room-list/ListLayout.ts
|
|
@@ -18,7 +18,7 @@ interface ISerializedListLayout {
|
|
|
|
export class ListLayout {
|
|
private _n = 0;
|
|
- private _previews = false;
|
|
+ private _previews = true;
|
|
private _collapsed = false;
|
|
|
|
public constructor(public readonly tagId: TagID) {
|
|
--
|
|
2.47.0
|
|
|