https://bugs.kde.org/show_bug.cgi?id=309119
--- Comment #15 from Till Schäfer <till2.schae...@uni-dortmund.de> --- (In reply to Marko from comment #14) > says it's fixed in 2.4.0 beta2, but bug is reproducible in krusader 2.4.0 > beta3. nope, it was reported for beta2, but was fixed after beta3 ... if you are running source distribution (such as gentoo) your can also just apply this patch here: --- krusader/Panel/panelfunc.cpp +++ krusader/Panel/panelfunc.cpp @@ -100,7 +100,7 @@ { public: virtual State validate(QString &input, int &pos) const { - return input.isEmpty() ? Invalid : Acceptable; + return input.isEmpty() ? Intermediate : Acceptable; } }; -- You are receiving this mail because: You are watching all bug changes.