Skip to content

Commit

Permalink
Make sure notification properties are saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
demonnic committed Jun 24, 2022
1 parent 29615d6 commit 5cadbdc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/resources/emco.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2122,6 +2122,8 @@ function EMCO:save()
deleteLines = self.deleteLines,
logExclusions = self.logExclusions,
gags = self.gags,
notifyTabs = self.notifyTabs,
notifyWithFocus = self.notifyWithFocus,
}
local dirname = getMudletHomeDir() .. "/EMCO/"
local filename = dirname .. self.name .. ".lua"
Expand Down Expand Up @@ -2186,6 +2188,8 @@ function EMCO:load()
self.deleteLines = configTable.deleteLines
self.logExclusions = configTable.logExclusions
self.gags = configTable.gags
self.notifyTabs = configTable.notifyTabs
self.notifyWithFocus = configTable.notifyWithFocus
self:move(configTable.x, configTable.y)
self:resize(configTable.width, configTable.height)
self:reset()
Expand Down

0 comments on commit 5cadbdc

Please sign in to comment.