Date: Sat, 10 Oct 2015 07:51:50 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398980 - in head/x11-fm/krusader2: . files Message-ID: <201510100751.t9A7popw003513@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kwm Date: Sat Oct 10 07:51:50 2015 New Revision: 398980 URL: https://svnweb.freebsd.org/changeset/ports/398980 Log: Add upstream patch to fix that the first symbol in directory's name can't be changed in the new directory dialog. PR: 201336 Submitted by: Andriy Solonenko <ap_berzerk@yahoo.com> Tested by: Tobias Berner <tcberner@gmail.com> Obtained from: krusader upstream Added: head/x11-fm/krusader2/files/ head/x11-fm/krusader2/files/patch-git-5cb23ac (contents, props changed) Modified: head/x11-fm/krusader2/Makefile Modified: head/x11-fm/krusader2/Makefile ============================================================================== --- head/x11-fm/krusader2/Makefile Sat Oct 10 07:10:19 2015 (r398979) +++ head/x11-fm/krusader2/Makefile Sat Oct 10 07:51:50 2015 (r398980) @@ -3,7 +3,7 @@ PORTNAME= krusader DISTVERSION= 2.4.0-beta3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fm kde MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ Added: head/x11-fm/krusader2/files/patch-git-5cb23ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fm/krusader2/files/patch-git-5cb23ac Sat Oct 10 07:51:50 2015 (r398980) @@ -0,0 +1,20 @@ +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; + } + }; +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510100751.t9A7popw003513>