From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SIPzg-00082f-MW for garchives@archives.gentoo.org; Thu, 12 Apr 2012 19:47:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24A51E0E7F; Thu, 12 Apr 2012 19:47:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EC530E0E7F for ; Thu, 12 Apr 2012 19:47:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 566711B4027 for ; Thu, 12 Apr 2012 19:47:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 22C58E5402 for ; Thu, 12 Apr 2012 19:47:24 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1334259915.b5bfb9409fd538daff462ed30796be00e6057d71.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kwin/files/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/kwin/files/kwin-4.7.97-dragndrop.patch X-VCS-Directories: kde-base/kwin/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: b5bfb9409fd538daff462ed30796be00e6057d71 X-VCS-Branch: master Date: Thu, 12 Apr 2012 19:47:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 1aabffe8-39c1-439e-8079-2d9764ba527f X-Archives-Hash: 537f21c952c3889a09d1b1574e59201c commit: b5bfb9409fd538daff462ed30796be00e6057d71 Author: Michael Palimaka astralcloak net> AuthorDate: Thu Apr 12 19:45:15 2012 +0000 Commit: Michael Palimaka astralcloak net> CommitDate: Thu Apr 12 19:45:15 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3Db5bfb940 [kde-base/kwin] Remove unused patch applied upstream. (Portage version: 2.1.10.56/git/Linux x86_64, unsigned Manifest commit) --- kde-base/kwin/files/kwin-4.7.97-dragndrop.patch | 20 -----------------= --- 1 files changed, 0 insertions(+), 20 deletions(-) diff --git a/kde-base/kwin/files/kwin-4.7.97-dragndrop.patch b/kde-base/k= win/files/kwin-4.7.97-dragndrop.patch deleted file mode 100644 index cab9a2f..0000000 --- a/kde-base/kwin/files/kwin-4.7.97-dragndrop.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/kwin/layers.cpp b/kwin/layers.cpp -index 931b988..31d1c49 100644 ---- a/kwin/layers.cpp -+++ b/kwin/layers.cpp -@@ -174,6 +174,15 @@ void Workspace::propagateClients(bool propagate_new= _clients) -=20 - newWindowStack << (Window*)client->frameId(); - } -+ -+ // when having hidden previews, stack hidden windows below everythi= ng else -+ // (as far as pure X stacking order is concerned), in order to avoi= d having -+ // these windows that should be unmapped to interfere with other wi= ndows -+ for (int i =3D stacking_order.size() - 1; i >=3D 0; i--) { -+ if (!stacking_order.at(i)->hiddenPreview()) -+ continue; -+ newWindowStack << (Window*)stacking_order.at(i)->frameId(); -+ } - // TODO isn't it too inefficient to restack always all clients? - // TODO don't restack not visible windows? - assert(newWindowStack.at(0) =3D=3D (Window*)supportWindow->winId())= ;