diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-16 00:33:33 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-16 13:57:55 +0530 |
| commit | 5a2a6aef3703d6aaaee24d9436da9e60ffcae769 (patch) | |
| tree | 565bfebbd41003c0e198739056d9178d279dfa6a /src/widgets/MainWindow.cpp | |
| parent | 387cf24e389854ecc97f6236fdd6acbc2486dd52 (diff) | |
| download | null-browser-5a2a6aef3703d6aaaee24d9436da9e60ffcae769.tar.gz null-browser-5a2a6aef3703d6aaaee24d9436da9e60ffcae769.zip | |
Fix UI issues with inputline and completer
Diffstat (limited to 'src/widgets/MainWindow.cpp')
| -rw-r--r-- | src/widgets/MainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/MainWindow.cpp b/src/widgets/MainWindow.cpp index 632869f..e2e54da 100644 --- a/src/widgets/MainWindow.cpp +++ b/src/widgets/MainWindow.cpp @@ -11,7 +11,7 @@ MainWindow::MainWindow() { setStyleSheet("background-color: #000; color: #fff;"); - setCentralWidget(new QWidget()); + setCentralWidget(new QWidget()); // TODO: manage widget memory // Root stacked layout auto layout = new QStackedLayout(); @@ -25,7 +25,7 @@ MainWindow::MainWindow() { layout->addWidget(webViewStack); // Command input - auto inputLine = new InputLine; + auto inputLine = new InputLine(); layout->addWidget(inputLine); inputMediator = |
