replace paging and zoomming order in readerui

pull/528/head
chrox 10 years ago
parent 6ae771a7f4
commit 9f50393f35

@ -183,6 +183,12 @@ function ReaderUI:init()
ui = self,
document = self.document,
})
-- paging controller
table.insert(self, ReaderPaging:new{
dialog = self.dialog,
view = self[1],
ui = self
})
-- zooming controller
local zoom = ReaderZooming:new{
dialog = self.dialog,
@ -190,12 +196,6 @@ function ReaderUI:init()
ui = self
}
table.insert(self, zoom)
-- paging controller
table.insert(self, ReaderPaging:new{
dialog = self.dialog,
view = self[1],
ui = self
})
-- panning controller
table.insert(self, ReaderPanning:new{
dialog = self.dialog,

Loading…
Cancel
Save