Skip to content

Commit bac81cd

Browse files
Make characterSpacing configurable
1 parent 3a786e2 commit bac81cd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ var c = {
3030
// Animation duration (in milliseconds)
3131
animationDuration: 600,
3232

33+
// Character spacing
34+
// Determines full-char-width kerning
35+
characterSpacing: 1.2,
36+
3337
// Scale
3438
// Highly recommended to just keep this as 2
3539
// Whole numbers only!

shell.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ PanelWindow {
4444
id: bitmapTitle
4545

4646
property string text: ""
47-
property real characterSpacing: 1.2
47+
property real characterSpacing: Config.c.slideOffset ?? 1.2
4848
property string fontImage: "./fonts/MusicTitleFont.png"
4949
property string currentTitle: ""
5050
property string currentStatus: ""

0 commit comments

Comments
 (0)