summaryrefslogtreecommitdiff
path: root/x11/kdebase3/patches/patch-fu
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2004-12-10 06:05:16 +0000
committermarkd <markd@pkgsrc.org>2004-12-10 06:05:16 +0000
commit00e41dbeed60d7a9be7ee41d5e17909d91427733 (patch)
tree60b3b0c4e7c13fc399938b986454fc6d9dde6fe1 /x11/kdebase3/patches/patch-fu
parentf8147e0562176700adf3890ba98bff1f4e2d9b1c (diff)
downloadpkgsrc-00e41dbeed60d7a9be7ee41d5e17909d91427733.tar.gz
Update to kde 3.3.2
Changes: * kcontrol: fix setting mouse buttons to left-handed for mice with many buttons * kcontrol: activate mouse cursor moving with keyboard if enabled * kcontrol-usbview: USB revision number and level was given in decimal instead of hex * kdesu: do not cause several seconds delay during logout * khotkeys: work around a bug in Qt keyboard compression breaking simulated keyboard input * klipper: fix mouse selection sometimes not being recorded * klipper: work around a problem in OpenOffice.org causing it to stop updating selection * klipper: do not record partial selections when created using the keyboard * klipper: reduce heavy load caused by clipboard selected in Acrobat Reader * klipper: protect against heavy load caused by broken clipboard handling in Lyx * kwin: avoid window description dialog for special window settings and try to guess the information automatically * kwin: various small improvements for special window settings * kwin: don't keep splashscreens above dialog windows * kwin: apply window-specific force settings immediatelly * kwin: keep active desktop borders working after resolution change * kwin: fix a case when a window was not activated due to incorrect focus stealing prevention * kwin: show dialogs also when minimized in the window list * kwin: when moving a window to another virtual desktop, move also its dialogs
Diffstat (limited to 'x11/kdebase3/patches/patch-fu')
-rw-r--r--x11/kdebase3/patches/patch-fu34
1 files changed, 31 insertions, 3 deletions
diff --git a/x11/kdebase3/patches/patch-fu b/x11/kdebase3/patches/patch-fu
index 183fcc192b6..8a3f86b9e05 100644
--- a/x11/kdebase3/patches/patch-fu
+++ b/x11/kdebase3/patches/patch-fu
@@ -1,8 +1,36 @@
-$NetBSD: patch-fu,v 1.1 2004/11/01 16:39:06 gavan Exp $
+$NetBSD: patch-fu,v 1.2 2004/12/10 06:05:16 markd Exp $
---- konsole/konsole/konsole.cpp.orig 2004-10-03 08:11:17.000000000 +0100
+--- konsole/konsole/konsole.cpp.orig 2004-11-29 06:27:15.000000000 +1300
+++ konsole/konsole/konsole.cpp
-@@ -3761,6 +3761,8 @@ void Konsole::slotFindDone()
+@@ -2381,11 +2381,11 @@ void Konsole::addSession(TESession* s)
+ createSessionTab(te, SmallIconSet(s->IconName()), newTitle);
+ setSchema(s->schemaNo());
+ tabwidget->setCurrentPage(tabwidget->count()-1);
+- disableMasterModeConnections(); // no duplicate connections, remove old
+- enableMasterModeConnections();
+- }
+- if( tabwidget )
+- m_removeSessionButton->setEnabled(tabwidget->count()>1);
++ disableMasterModeConnections(); // no duplicate connections, remove old
++ enableMasterModeConnections();
++ if(m_removeSessionButton)
++ m_removeSessionButton->setEnabled(tabwidget->count()>1);
++ }
+ }
+
+ QString Konsole::currentSession()
+@@ -2827,8 +2827,8 @@ void Konsole::doneSession(TESession* s)
+ rootxpms.remove(s->widget());
+ }
+ delete s->widget();
+- if( tabwidget )
+- m_removeSessionButton->setEnabled(tabwidget->count()>1);
++ if (m_removeSessionButton)
++ m_removeSessionButton->setEnabled(tabwidget->count()>1);
+ }
+ session2action.remove(s);
+ action2session.remove(ra);
+@@ -3747,6 +3747,8 @@ void Konsole::slotFindDone()
m_finddialog->hide();
}