mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-25 05:39:27 +03:00
Possibly improve resize logic perf
This commit is contained in:
parent
946b3f5bc0
commit
bc81281c84
@ -82,23 +82,18 @@ func Init(version, commit, builtBy string) {
|
|||||||
termH = height
|
termH = height
|
||||||
|
|
||||||
// Make sure the current tab content is reformatted when the terminal size changes
|
// Make sure the current tab content is reformatted when the terminal size changes
|
||||||
go func(t *tab) {
|
for i := range tabs {
|
||||||
reformatMu.Lock() // Only allow one reformat job at a time
|
// Overwrite all tabs with a new, differently sized, left margin
|
||||||
for i := range tabs {
|
browser.AddTab(
|
||||||
// Overwrite all tabs with a new, differently sized, left margin
|
strconv.Itoa(i),
|
||||||
browser.AddTab(
|
tabs[i].label(),
|
||||||
strconv.Itoa(i),
|
makeContentLayout(tabs[i].view, leftMargin()),
|
||||||
tabs[i].label(),
|
)
|
||||||
makeContentLayout(tabs[i].view, leftMargin()),
|
if tabs[i] == tabs[curTab] {
|
||||||
)
|
// Reformat page ASAP, in the middle of loop
|
||||||
if tabs[i] == t {
|
reformatPageAndSetView(tabs[curTab], tabs[curTab].page)
|
||||||
// Reformat page ASAP, in the middle of loop
|
|
||||||
reformatPageAndSetView(t, t.page)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
App.Draw()
|
}
|
||||||
reformatMu.Unlock()
|
|
||||||
}(tabs[curTab])
|
|
||||||
})
|
})
|
||||||
|
|
||||||
panels.AddPanel(PanelBrowser, browser, true, true)
|
panels.AddPanel(PanelBrowser, browser, true, true)
|
||||||
|
Loading…
Reference in New Issue
Block a user