Skip to content

Commit

Permalink
Merge pull request LemonOSProject#28 from abhra2020-smart/patch-1
Browse files Browse the repository at this point in the history
Update main.cpp
  • Loading branch information
fido2020 authored Dec 3, 2021
2 parents b8e6c45 + 4eed4b1 commit a8ebf11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Applications/FileManager/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ extern "C"
int main(int argc, char** argv){
Lemon::GUI::Window* window;

window = new Lemon::GUI::Window("Fileman", {600, 348}, WINDOW_FLAGS_RESIZABLE, Lemon::GUI::WindowType::GUI);
window = new Lemon::GUI::Window("File Manager", {600, 348}, WINDOW_FLAGS_RESIZABLE, Lemon::GUI::WindowType::GUI);

Lemon::GUI::FileView* fv = new Lemon::GUI::FileView({{0,0},{0,0}}, "/", OnFileOpened);
window->AddWidget(fv);
Expand All @@ -45,4 +45,4 @@ int main(int argc, char** argv){

delete window;
return 0;
}
}

0 comments on commit a8ebf11

Please sign in to comment.