feat: apply tabular number formatting to timestamp (#6062)

This commit is contained in:
pajlada
2025-03-12 15:02:06 +01:00
committed by GitHub
parent 59e93d41d3
commit eff4e34ec6
147 changed files with 187 additions and 165 deletions
+1
View File
@@ -6,6 +6,7 @@
- Minor: Add `Set highlight sounds` and `Open subscription page` split hotkeys. (#5856, #6030)
- Minor: `/clear` messages are now stacked like timeouts. (#5806)
- Minor: Treat all browsers starting with `firefox` as a Firefox browser. (#5805)
- Minor: Timestamps are now monospaced. (#6062)
- Minor: Remove incognito browser support for `opera/launcher` (this should no longer be a thing). (#5805)
- Minor: Remove incognito browser support for `iexplore`, because internet explorer is EOL. (#5810)
- Minor: When (re-)connecting, visible channels are now joined first. (#5850)
+1 -1
View File
@@ -1026,7 +1026,7 @@ TextElement *TimestampElement::formatTime(const QTime &time)
QString format = locale.toString(time, getSettings()->timestampFormat);
return new TextElement(format, MessageElementFlag::Timestamp,
MessageColor::System, FontStyle::ChatMedium);
MessageColor::System, FontStyle::TimestampMedium);
}
QJsonObject TimestampElement::toJson() const
+20 -1
View File
@@ -70,6 +70,7 @@ float fontSize(FontStyle style)
case FontStyle::ChatMedium:
case FontStyle::ChatMediumBold:
case FontStyle::ChatMediumItalic:
case FontStyle::TimestampMedium:
return chatSize();
case FontStyle::ChatLarge:
return 1.2F * chatSize();
@@ -99,6 +100,7 @@ int fontWeight(FontStyle style)
case FontStyle::ChatMediumItalic:
case FontStyle::ChatLarge:
case FontStyle::ChatVeryLarge:
case FontStyle::TimestampMedium:
return getSettings()->chatFontWeight.getValue();
case FontStyle::ChatMediumBold:
@@ -129,6 +131,7 @@ bool isItalic(FontStyle style)
case FontStyle::ChatMediumBold:
case FontStyle::ChatLarge:
case FontStyle::ChatVeryLarge:
case FontStyle::TimestampMedium:
case FontStyle::UiMedium:
case FontStyle::UiMediumBold:
case FontStyle::UiTabs:
@@ -157,6 +160,7 @@ QString fontFamily(FontStyle style)
case FontStyle::ChatMediumItalic:
case FontStyle::ChatLarge:
case FontStyle::ChatVeryLarge:
case FontStyle::TimestampMedium:
return getSettings()->chatFontFamily.getValue();
case FontStyle::UiMedium:
@@ -229,12 +233,27 @@ Fonts::FontData &Fonts::getOrCreateFontData(FontStyle type, float scale)
Fonts::FontData Fonts::createFontData(FontStyle type, float scale)
{
return QFont{
QFont font{
fontFamily(type),
static_cast<int>(fontSize(type) * scale),
fontWeight(type),
isItalic(type),
};
switch (type)
{
case FontStyle::TimestampMedium: {
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
// Apply the OpenType feature `tnum` to timestamp fonts
// https://sparanoid.com/lab/opentype-features/#tnum
auto tag = QFont::Tag("tnum");
font.setFeature(tag, 1);
#endif
}
break;
}
return font;
}
} // namespace chatterino
+2
View File
@@ -24,6 +24,8 @@ enum class FontStyle : uint8_t {
ChatLarge,
ChatVeryLarge,
TimestampMedium,
UiMedium,
UiMediumBold,
UiTabs,
@@ -179,7 +179,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -191,7 +191,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -185,7 +185,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -237,7 +237,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -179,7 +179,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -219,7 +219,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -219,7 +219,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -219,7 +219,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -59,7 +59,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -58,7 +58,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -56,7 +56,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -56,7 +56,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -52,7 +52,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -52,7 +52,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -60,7 +60,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -56,7 +56,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -56,7 +56,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -179,7 +179,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -322,7 +322,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -461,7 +461,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -139,7 +139,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -282,7 +282,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -139,7 +139,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -282,7 +282,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -52,7 +52,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -139,7 +139,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -252,7 +252,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -139,7 +139,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -251,7 +251,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -57,7 +57,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -50,7 +50,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -54,7 +54,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -55,7 +55,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -131,7 +131,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -128,7 +128,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -29,7 +29,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -29,7 +29,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -29,7 +29,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -37,7 +37,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -37,7 +37,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -167,7 +167,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -33,7 +33,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -33,7 +33,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -108,7 +108,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -37,7 +37,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
+1 -1
View File
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -18,7 +18,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -34,7 +34,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -33,7 +33,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -33,7 +33,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -33,7 +33,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -176,7 +176,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -38,7 +38,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -185,7 +185,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -36,7 +36,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -182,7 +182,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",
@@ -35,7 +35,7 @@
"type": "None",
"value": ""
},
"style": "ChatMedium",
"style": "TimestampMedium",
"tooltip": "",
"trailingSpace": true,
"type": "TextElement",

Some files were not shown because too many files have changed in this diff Show More