Nux

Merge lp:~loic.molinari/nux/nux-fix-711195 into lp:nux

Proposed by Loïc Molinari
Status: Merged
Merged at revision: 199
Proposed branch: lp:~loic.molinari/nux/nux-fix-711195
Merge into: lp:nux
Diff against target: 13 lines (+2/-1)
1 file modified
NuxGraphics/GraphicsDisplayX11.cpp (+2/-1)
To merge this branch: bzr merge lp:~loic.molinari/nux/nux-fix-711195
Reviewer Review Type Date Requested Status
Jay Taoko (community) Approve
Review via email: mp+48493@code.launchpad.net

Description of the change

Fixes lp:711195 by adding "Escape" to the list of keys not to be looked by XLookupString().

To post a comment you must log in.
Revision history for this message
Jay Taoko (jaytaoko) wrote :

Approved

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'NuxGraphics/GraphicsDisplayX11.cpp'
2--- NuxGraphics/GraphicsDisplayX11.cpp 2011-01-26 15:11:24 +0000
3+++ NuxGraphics/GraphicsDisplayX11.cpp 2011-02-03 15:53:10 +0000
4@@ -1472,7 +1472,8 @@
5
6 bool skip = false;
7 if ((keysym == NUX_VK_BACKSPACE) ||
8- (keysym == NUX_VK_DELETE))
9+ (keysym == NUX_VK_DELETE) ||
10+ (keysym == NUX_VK_ESCAPE))
11 {
12 //temporary fix for TextEntry widget: filter some keys
13 skip = true;

Subscribers

People subscribed via source and target branches