Skip to content

Commit 56f16c9

Browse files
committed
fix right click handling on mc
fix Guake#1244 Signed-off-by: Gaetan Semet <[email protected]>
1 parent 9f7ba2f commit 56f16c9

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dev: pipenv-install-dev requirements ln-venv setup-githook prepare-install
5454

5555
dev-no-pipenv: clean
5656
virtualenv --python $(PYTHON_INTERPRETER) .venv
57-
. .venv/bin/activate && /usr/bin/env python3 -m pip install -r requirements.txt -r requirements-dev.txt -e .
57+
. .venv/bin/activate && pip install -r requirements.txt -r requirements-dev.txt -e .
5858

5959
pipenv-install-dev:
6060
pipenv install --dev --python $(PYTHON_INTERPRETER); \

guake/guake_app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ def show_context_menu(self, terminal, event):
659659
# First send to background process if handled, do nothing else
660660
if Vte.Terminal.do_button_press_event(terminal, event):
661661
log.info("Background app captured the right click event")
662-
return False
662+
return True
663663

664664
log.debug("showing context menu")
665665
self.showing_context_menu = True
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fixes:
2+
- |
3+
Fix right click selection in Midnight Commander

0 commit comments

Comments
 (0)