<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Hi all,</p>
<p><br>
</p>
<p>is MenuMorph>>#filterListWith: still up to date? Has no senders (in my image) and looks like a duplicate of #handleFiltering:. But it does not display the filter.</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</p>
<div id="x_Signature">
<div name="x_divtagdefaultwrapper" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:; margin:0">
<div><font size="2" color="#808080"></font></div>
</div>
</div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Samstag, 10. August 2019 01:43:38<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Inbox: Morphic-ct.1500.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">A new version of Morphic was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Morphic-ct.1500.mcz">http://source.squeak.org/inbox/Morphic-ct.1500.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-ct.1500<br>
Author: ct<br>
Time: 10 August 2019, 1:43:30.153412 am<br>
UUID: 3c117318-6d64-f14e-b166-ebee4ed792f7<br>
Ancestors: Morphic-mt.1498<br>
<br>
Refactor menu filtering to ignore special keys like Character end<br>
<br>
=============== Diff against Morphic-mt.1498 ===============<br>
<br>
Item was changed:<br>
  ----- Method: MenuMorph>>handleFiltering: (in category 'keystroke helpers') -----<br>
  handleFiltering: evt<br>
  <br>
         | matchString |<br>
         matchString := self valueOfProperty: #matchString ifAbsentPut: [ String new ].<br>
+        matchString := true<br>
+                caseOf: {<br>
+                        [ evt keyCharacter = Character backspace ] -><br>
+                                [ matchString isEmpty <br>
+                                        ifTrue: [ matchString ] <br>
+                                        ifFalse: [ matchString allButLast ] ].<br>
+                        [ evt keyValue >= 32 ] -><br>
+                                [ matchString , evt keyCharacter ] }<br>
+                otherwise: [ matchString ].<br>
-        matchString := evt keyValue = 8 " Character backspace asciiValue "<br>
-                ifTrue: [<br>
-                        matchString isEmpty <br>
-                                ifTrue: [ matchString ] <br>
-                                ifFalse: [ matchString allButLast ] ]<br>
-                ifFalse: [<br>
-                        matchString copyWith: evt keyCharacter ].<br>
         self setProperty: #matchString toValue: matchString.<br>
         self displayFiltered: evt!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>