Browse Source

restoring scroll position when loading a client config only if the file was not already loaded

master
Youen Toupin 7 years ago
parent
commit
641b2dff16
  1. 4
      server/wxLdb/ui/mainWindow.lua
  2. 4
      server/wxLdb/wxLdbController.lua

4
server/wxLdb/ui/mainWindow.lua

@ -266,7 +266,9 @@ end
function meta.__index:getSourcePage( source )
local page = self.sourcePages[source]
local newlyLoaded = false
if page == nil then
newlyLoaded = true
page = mainthread.execute( function() return ui.sourcePage.new( self.sourceBook, source ) end )
self.sourcePages[source] = page
local _, _, name = string.find( source, ".*[/\\](.*)" )
@ -280,7 +282,7 @@ function meta.__index:getSourcePage( source )
page:registerEvent( "onBreakPointChanged", function( ... ) self:runEvents_( "onBreakPointChanged", source, ... ) end )
page:registerEvent( "onScrollChanged", function( ... ) self:runEvents_( "onScrollChanged", source, ... ) end )
end
return page
return page, newlyLoaded
end
function meta.__index:findSourcePage( source )

4
server/wxLdb/wxLdbController.lua

@ -823,8 +823,8 @@ function meta.__index:loadConfig_( name )
end
for _, file in ipairs( config.openFiles ) do
local page = self.window:getSourcePage( file )
if page ~= nil then
local page, newlyLoaded = self.window:getSourcePage( file )
if page ~= nil and newlyLoaded then
local sp = clientConfig.scrollPositions[file]
print("scroll to", sp)
if sp ~= nil then

Loading…
Cancel
Save