Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 205294 Details for
Bug 233434
Ebuild for Launchy 2.1.1
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fixes a launchy problem that occurs in combination with (kde?) and compiz manager
launchy-compiz.patch (text/plain), 2.58 KB, created by
T. S.
on 2009-09-26 14:26:58 UTC
(
hide
)
Description:
Fixes a launchy problem that occurs in combination with (kde?) and compiz manager
Filename:
MIME Type:
Creator:
T. S.
Created:
2009-09-26 14:26:58 UTC
Size:
2.58 KB
patch
obsolete
>--- main.cpp 2008-08-06 03:57:52.000000000 +0200 >+++ main_patch.cpp 2009-01-27 23:32:10.000000000 +0100 >@@ -289,11 +289,17 @@ > qApp->syncX(); > alternatives->raise(); > } else { >- alternatives->hide(); >+ /* >+ * This is an ugly q'n'd fix for http://sourceforge.net/tracker/index.php?func=detail&aid=2208093&group_id=132975&atid=725839 >+ * Instead of hiding alternatives that just moves them to an area where it cannot be seen. May cause problems with secondary screen? >+ * thilo@tschulzke.com on 27th January 2009 >+ */ >+ QRect scr = qApp->desktop()->availableGeometry(qApp->desktop()->primaryScreen()); >+ n.moveTo(scr.width(),5*scr.height()); >+ alternatives->setGeometry(n); > } > } > >- > void MyWidget::launchObject() { > CatItem res = inputData[0].getTopResult(); > if (res.id == HASH_LAUNCHY) { >@@ -338,7 +344,7 @@ > > void MyWidget::altKeyPressEvent(QKeyEvent* key) { > if (key->key() == Qt::Key_Escape) { >- alternatives->hide(); >+ showAlternatives(false); > } > if (key->key() == Qt::Key_Up) {key->ignore();} > else if (key->key() == Qt::Key_Down) {key->ignore();} >@@ -364,7 +370,7 @@ > input->setText(printInput() + searchResults[0].fullPath); > } > */ >- alternatives->hide(); >+ showAlternatives(false); > > > if (key->key() == Qt::Key_Tab) { >@@ -381,7 +387,7 @@ > } > } > else { >- alternatives->hide(); >+ showAlternatives(false); > activateWindow(); > raise(); > input->setFocus(); >@@ -479,7 +485,7 @@ > void MyWidget::keyPressEvent(QKeyEvent* key) { > if (key->key() == Qt::Key_Escape) { > if (alternatives->isVisible()) >- alternatives->hide(); >+ showAlternatives(false); > else > hideLaunchy(); > } >@@ -527,7 +533,7 @@ > > > void MyWidget::processKey() { >- alternatives->hide(); >+ showAlternatives(false); > dropTimer->stop(); > dropTimer->start(1000); > >@@ -908,7 +914,7 @@ > void MyWidget::MoveFromAlpha(QPoint pos) { > move(pos); > if(alternatives) >- alternatives->hide(); >+ showAlternatives(false); > } > > void MyWidget::setAlwaysShow(bool alwaysShow) { >@@ -1104,7 +1110,7 @@ > > void MyWidget::mousePressEvent(QMouseEvent *e) > { >- //alternatives->hide(); >+ //showAlternatives(false); > activateWindow(); > raise(); > showAlternatives(false); >@@ -1148,7 +1154,7 @@ > > void MyWidget::menuOptions() { > dropTimer->stop(); >- alternatives->hide(); >+ showAlternatives(false); > optionsOpen = true; > OptionsDlg ops(this); > ops.setObjectName("options"); >@@ -1259,7 +1265,7 @@ > > void MyWidget::showLaunchy(bool now) { > shouldDonate(); >- alternatives->hide(); >+ showAlternatives(false); > > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 233434
:
161829
|
161830
|
161832
|
167046
|
167047
|
167052
|
167053
|
167054
|
205181
| 205294 |
270195