Author Topic: 3.0.9 f5 bugged chat with UIKeyBindings  (Read 1483 times)

vallcrist

  • Newbie
  • *
  • Thank You
  • -Given: 0
  • -Receive: 0
  • Posts: 49
    • View Profile
3.0.9 f5 bugged chat with UIKeyBindings
« on: January 25, 2014, 08:16:21 PM »
Yea, title says it.

Happens in the Chat example that comes with NGUI as well.

When you submit a message, the UIKeyBindings activate the chat again right after.

Last known working version : 3.0.9 f4


--

Checking the changes here, seems like the changes to EventDelegate that broke it.
« Last Edit: January 25, 2014, 08:23:45 PM by vallcrist »

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: 3.0.9 f5 bugged chat with UIKeyBindings
« Reply #1 on: January 26, 2014, 09:04:44 PM »
Thanks, I will investigate and fix.

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: 3.0.9 f5 bugged chat with UIKeyBindings
« Reply #2 on: January 26, 2014, 09:32:05 PM »
I think it's because of a typo in EventDelegate.cs line 295:
  1. if (i < list.Count) break;
should be:
  1. if (i >= list.Count) break;