diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-22 00:51:46 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-22 00:51:50 +0530 |
| commit | f09f1aa704f06472ec134b40e2f69bf3279c3f06 (patch) | |
| tree | f292716c90d16ade8d31b2b2d70da8481d1e8294 /src/main.cpp | |
| parent | 498135054a168bd839f2ee8ebb1ba245d72a8f3b (diff) | |
| download | null-browser-f09f1aa704f06472ec134b40e2f69bf3279c3f06.tar.gz null-browser-f09f1aa704f06472ec134b40e2f69bf3279c3f06.zip | |
Add web.keymap.set + test keymaps config.lua
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index a83408c..d86b484 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,11 +1,15 @@ #include <QApplication> #include <QMainWindow> +#include "LuaRuntime.hpp" #include "widgets/MainWindow.hpp" int main(int argc, char *argv[]) { QApplication app(argc, argv); + auto lua = LuaRuntime::instance(); + lua->startEventLoop(); + MainWindow mainWindow; mainWindow.setWindowTitle("null-browser"); mainWindow.show(); |
