mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix deep copy Glyph on LastOpenHistoryResult
This commit is contained in:
parent
11645fdc9a
commit
58d910dc57
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ public class LastOpenedHistoryResult : Result
|
|||
// Used for Last Opened History style reopening, currently need to be assigned at MainViewModel.cs
|
||||
AsyncAction = null,
|
||||
Glyph = glyphValue != null
|
||||
? new GlyphInfo(Glyph.FontFamily, Glyph.Glyph)
|
||||
? new GlyphInfo(glyphValue.FontFamily, glyphValue.Glyph)
|
||||
: null,
|
||||
ExecutedDateTime = ExecutedDateTime
|
||||
// Note: Other properties are left as default — copy if needed.
|
||||
|
|
|
|||
Loading…
Reference in a new issue