Rename Application Fields

This commit is contained in:
aditya-K2
2021-11-13 16:57:54 +05:30
parent e2fd4c117e
commit dbfc617037
2 changed files with 20 additions and 20 deletions

12
App.go
View File

@@ -9,10 +9,10 @@ var IMG_X, IMG_Y, IMG_W, IMG_H int
type Application struct {
App *tview.Application
expandedView *tview.Table
ExpandedView *tview.Table
Navbar *tview.Table
searchBar *tview.Table
pBar *progressBar
SearchBar *tview.Table
ProgressBar *progressBar
Pages *tview.Pages
}
@@ -60,10 +60,10 @@ func newApplication(r *Renderer) *Application {
return &Application{
App: App,
expandedView: expandedView,
ExpandedView: expandedView,
Navbar: Navbar,
searchBar: searchBar,
pBar: pBar,
SearchBar: searchBar,
ProgressBar: pBar,
Pages: rootPages,
}