mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
Replace Iosevka with JetBrains Mono, fix scrollbar and inline edit UX
- Replace embedded Iosevka font with JetBrains Mono as default font
- Fix wide horizontal scrollbar by enabling SCI_SETSCROLLWIDTHTRACKING
- Remove 28-char trailing whitespace padding from all lines
- Fix arrow keys not collapsing selection in inline edit mode
- Dim struct/array braces ({ and };) to match hex node styling
- Resize margin immediately on font change
This commit is contained in:
@@ -48,8 +48,8 @@ private slots:
|
||||
QCOMPARE(result.meta[2].depth, 1);
|
||||
|
||||
// Offset text
|
||||
QCOMPARE(result.meta[1].offsetText, QString("0"));
|
||||
QCOMPARE(result.meta[2].offsetText, QString("4"));
|
||||
QCOMPARE(result.meta[1].offsetText, QString("0000 "));
|
||||
QCOMPARE(result.meta[2].offsetText, QString("0004 "));
|
||||
|
||||
// Line 3 is root footer
|
||||
QCOMPARE(result.meta[3].lineKind, LineKind::Footer);
|
||||
@@ -81,7 +81,7 @@ private slots:
|
||||
|
||||
// Line 1: single Vec3 line, not continuation, depth 1
|
||||
QVERIFY(!result.meta[1].isContinuation);
|
||||
QCOMPARE(result.meta[1].offsetText, QString("0"));
|
||||
QCOMPARE(result.meta[1].offsetText, QString("0000 "));
|
||||
QCOMPARE(result.meta[1].depth, 1);
|
||||
QCOMPARE(result.meta[1].nodeKind, NodeKind::Vec3);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user