Skip to content

Commit 27245b9

Browse files
committed
Rename user Fonts and build won't synchronize to ui_font_xxx.c ,cause compile error! #608
1 parent 81e1dc7 commit 27245b9

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

packages/project-editor/features/font/font.tsx

+33-3
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,36 @@ export class Font extends EezObject {
15851585
return undefined;
15861586
}
15871587
},
1588-
icon: "material:font_download"
1588+
icon: "material:font_download",
1589+
1590+
updateObjectValueHook: (font: Font, values: Partial<Font>) => {
1591+
const projectStore = getProjectStore(font);
1592+
if (
1593+
projectStore.projectTypeTraits.isLVGL &&
1594+
values.name != undefined &&
1595+
font.name != values.name
1596+
) {
1597+
projectStore.undoManager.postponeSetCombineCommandsFalse = true;
1598+
1599+
setTimeout(async () => {
1600+
projectStore.undoManager.postponeSetCombineCommandsFalse =
1601+
false;
1602+
1603+
try {
1604+
await font.rebuildLvglFont(
1605+
projectStore,
1606+
projectStore.project.settings.general.lvglVersion,
1607+
projectStore.project.settings.build.lvglInclude,
1608+
values.name
1609+
);
1610+
} catch (err) {
1611+
console.error(err);
1612+
}
1613+
1614+
projectStore.undoManager.setCombineCommands(false);
1615+
});
1616+
}
1617+
}
15891618
};
15901619

15911620
get glyphsMap() {
@@ -1682,14 +1711,15 @@ export class Font extends EezObject {
16821711
async rebuildLvglFont(
16831712
projectStore: ProjectStore,
16841713
lvglVersion: string,
1685-
lvglInclude: string
1714+
lvglInclude: string,
1715+
name?: string
16861716
) {
16871717
if (!this.embeddedFontFile) {
16881718
return;
16891719
}
16901720

16911721
const fontProperties = await extractFont({
1692-
name: this.name,
1722+
name: name || this.name,
16931723
absoluteFilePath: projectStore.getAbsoluteFilePath(
16941724
this.source!.filePath
16951725
),

packages/project-editor/store/undo-manager.ts

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export class UndoManager {
1919
private selectionBeforeFirstCommand: any;
2020
public combineCommands: boolean = false;
2121

22+
postponeSetCombineCommandsFalse: boolean = false;
23+
2224
constructor(public projectStore: ProjectStore) {
2325
makeObservable(this, {
2426
undoStack: observable,
@@ -61,6 +63,10 @@ export class UndoManager {
6163
}
6264

6365
setCombineCommands(value: boolean) {
66+
if (value == false && this.postponeSetCombineCommandsFalse) {
67+
return;
68+
}
69+
6470
this.pushToUndoStack();
6571
this.combineCommands = value;
6672

0 commit comments

Comments
 (0)