Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/widgets/header/header.lcb
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public handler OnSave(out rProperties as Array)
put mActionStyle into rProperties["actionStyle"]
put mShowBackIcon into rProperties["showBackIcon"]
put mLeftLabel into rProperties["leftLabel"]
put mActionColor into rProperties["actionColor"]
put getActionColor() into rProperties["actionColor"]
put mShowSearchIcon into rProperties["showSearchIcon"]

return rProperties
Expand All @@ -313,7 +313,7 @@ public handler OnLoad(in pProperties as Array)
put pProperties["actionStyle"] into mActionStyle
put pProperties["showBackIcon"] into mShowBackIcon
put pProperties["leftLabel"] into mLeftLabel
put pProperties["actionColor"] into mActionColor
setActionColor(pProperties["actionColor"])
put pProperties["showSearchIcon"] into mShowSearchIcon
end handler

Expand Down