diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:16:54 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:16:54 +0530 |
| commit | 8ab1f8d796d8f35a65e38fdd03d51824a41d1dab (patch) | |
| tree | 6b7b9655e5a2e7f6fbc0e1b3bec66771e87a64f8 /src/main.cpp | |
| parent | 2078c60477842d7cf6991148e23979565737a8b5 (diff) | |
| download | null-browser-8ab1f8d796d8f35a65e38fdd03d51824a41d1dab.tar.gz null-browser-8ab1f8d796d8f35a65e38fdd03d51824a41d1dab.zip | |
Add simple js rpc for decorations via custom scheme
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index fbe1fbd..76afb90 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,8 +1,10 @@ #include <QApplication> #include "App.hpp" +#include "schemes/schemes.hpp" int main(int argc, char *argv[]) { + register_all_schemes(); const QApplication qt_app(argc, argv); App app; |
