From 9e43c91821a9b09ab6751ee68c70b4acfb242d71 Mon Sep 17 00:00:00 2001 From: slava Date: Mon, 24 Jul 2006 06:08:57 +0000 Subject: [PATCH] Fix Shift key modifier in Cocoa backend --- TODO.FACTOR.txt | 3 +-- library/ui/cocoa/view-utils.factor | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index 62e35ae4fb..49548a960f 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -7,8 +7,6 @@ - clicking input doesn't resize editor gadget - better listener multi-line expression handling - C+p/C+n with empty history bombs -- shift modifier not delivered -- x11 copy to clipboard - httpd search tools - remaining HTML issues need fixing @@ -24,6 +22,7 @@ + ui: +- support x11's large selections, if needed - one-column table doesn't need borders...? [2:45pm] tathi: Factor's text display is a bit odd sometimes, until you mouse over (or click, if there's no "live" text) [2:48pm] tathi: it appears to be using the font metrics from the sprite tuple, but re-using the texture from the previous letter diff --git a/library/ui/cocoa/view-utils.factor b/library/ui/cocoa/view-utils.factor index 6f9fd082c4..a8ebd70bea 100644 --- a/library/ui/cocoa/view-utils.factor +++ b/library/ui/cocoa/view-utils.factor @@ -34,7 +34,7 @@ opengl sequences ; : modifiers { - { S+ HEX: 10000 } + { S+ HEX: 20000 } { C+ HEX: 40000 } { A+ HEX: 80000 } { M+ HEX: 100000 }