aboutsummaryrefslogtreecommitdiff
path: root/include/MainWindow.hpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-09 00:15:18 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-09 00:15:18 +0530
commit319908623e47b4e73f9af4aa4369cb895bd8df8f (patch)
tree86d40d633bf86b5bc70876c1044ac0e030524e96 /include/MainWindow.hpp
parent6d3ee55638164df6521a60b6392a26f855d5f924 (diff)
downloadnull-browser-319908623e47b4e73f9af4aa4369cb895bd8df8f.tar.gz
null-browser-319908623e47b4e73f9af4aa4369cb895bd8df8f.zip
Fix command input ui to fix to top
Diffstat (limited to 'include/MainWindow.hpp')
-rw-r--r--include/MainWindow.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/MainWindow.hpp b/include/MainWindow.hpp
index 20e07c0..552aa25 100644
--- a/include/MainWindow.hpp
+++ b/include/MainWindow.hpp
@@ -14,8 +14,9 @@ protected:
void keyPressEvent(QKeyEvent *event) override;
void toggleURLInput();
void evaluateCommand(QString command);
+ void hideInput();
private:
QWebEngineView *web;
- CommandInput *urlInputUI;
+ CommandInput *commandInput;
};