commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9
Author: Jan Lepper <jan_lepper@gmx.de>
Date:	 Wed Jan 2 21:38:52 2013 +0100

    FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text
    return QValidator::Intermediate instead of Invalid when input is empty
    BUG: 309119


--- krusader/Panel/panelfunc.cpp.orig	2012-10-21 12:55:54.000000000 +0200
+++ krusader/Panel/panelfunc.cpp	2015-10-09 17:43:53.794177000 +0200
@@ -100,7 +100,7 @@
 {
 public:
     virtual State validate(QString &input, int &pos) const {
-        return input.isEmpty() ? Invalid : Acceptable;
+        return input.isEmpty() ? Intermediate : Acceptable;
     }
 };
 
