File tree 2 files changed +39
-3
lines changed
2 files changed +39
-3
lines changed Original file line number Diff line number Diff line change @@ -1585,7 +1585,36 @@ export class Font extends EezObject {
1585
1585
return undefined ;
1586
1586
}
1587
1587
} ,
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
+ }
1589
1618
} ;
1590
1619
1591
1620
get glyphsMap ( ) {
@@ -1682,14 +1711,15 @@ export class Font extends EezObject {
1682
1711
async rebuildLvglFont (
1683
1712
projectStore : ProjectStore ,
1684
1713
lvglVersion : string ,
1685
- lvglInclude : string
1714
+ lvglInclude : string ,
1715
+ name ?: string
1686
1716
) {
1687
1717
if ( ! this . embeddedFontFile ) {
1688
1718
return ;
1689
1719
}
1690
1720
1691
1721
const fontProperties = await extractFont ( {
1692
- name : this . name ,
1722
+ name : name || this . name ,
1693
1723
absoluteFilePath : projectStore . getAbsoluteFilePath (
1694
1724
this . source ! . filePath
1695
1725
) ,
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ export class UndoManager {
19
19
private selectionBeforeFirstCommand : any ;
20
20
public combineCommands : boolean = false ;
21
21
22
+ postponeSetCombineCommandsFalse : boolean = false ;
23
+
22
24
constructor ( public projectStore : ProjectStore ) {
23
25
makeObservable ( this , {
24
26
undoStack : observable ,
@@ -61,6 +63,10 @@ export class UndoManager {
61
63
}
62
64
63
65
setCombineCommands ( value : boolean ) {
66
+ if ( value == false && this . postponeSetCombineCommandsFalse ) {
67
+ return ;
68
+ }
69
+
64
70
this . pushToUndoStack ( ) ;
65
71
this . combineCommands = value ;
66
72
You can’t perform that action at this time.
0 commit comments