diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-21 00:07:53 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-21 00:07:53 +0100 |
commit | 85088c590ef99f9487abf2768f8084653cd4ab16 (patch) | |
tree | 949be6cf87b780d0b5b39da5eb614a959df9d8a2 | |
parent | Added .desktop file (diff) | |
download | rekonq-85088c590ef99f9487abf2768f8084653cd4ab16.tar.xz |
- Added kWarning for fixed minimun size
- updated TODO
- upgraded .desktop file
-rw-r--r-- | TODO | 8 | ||||
-rw-r--r-- | data/rekonq.desktop | 2 | ||||
-rw-r--r-- | src/searchbar.cpp | 2 |
3 files changed, 5 insertions, 7 deletions
@@ -11,21 +11,17 @@ Road to 0.0.1 (first release) NEXT.. -- Fixing QByteArray save/load state!! ++ Fixing QByteArray save/load state!! - system SELECT ALL - better FULL SCREEN - simplify history -- KDE download = Kjob && Kget -- configure dialog (A-LA amarok, konqueror) -- dbus support (?!) -- KWallet support - Kpart ?? +------------------------ - contextMenu in searchbar to set different search engines -- save toolbars settings ++ save toolbars settings - NEW save/load setting functions in KMainWIndow + improve CMakeLists.txt 4.4 required, 4.5 better.. - browse code to search TODO and FIXME diff --git a/data/rekonq.desktop b/data/rekonq.desktop index 4d22c75f..126cba2a 100644 --- a/data/rekonq.desktop +++ b/data/rekonq.desktop @@ -5,4 +5,4 @@ Icon=rekonq Type=Application Exec=rekonq %u X-DocPath=rekonq/index.html -Categories=Qt;KDE;Network;
\ No newline at end of file +Categories=Qt;KDE;Network; diff --git a/src/searchbar.cpp b/src/searchbar.cpp index 0cf8e801..8b21daf5 100644 --- a/src/searchbar.cpp +++ b/src/searchbar.cpp @@ -29,6 +29,8 @@ SearchBar::SearchBar(QWidget *parent) : KLineEdit(parent) { setMinimumWidth(180); + kWarning() << "setting fixed minimum width.." ; + setFocusPolicy( Qt::WheelFocus ); setMouseTracking( true ); setAcceptDrops(true); |