|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-01-25 17:08 UTC] markskilbeck@php.net
[2011-01-28 21:12 UTC] markskilbeck@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: markskilbeck
[2012-03-30 06:12 UTC] markskilbeck@php.net
-Status: Assigned
+Status: Open
-Assigned To: markskilbeck
+Assigned To: auroraeosrose
[2016-10-16 17:17 UTC] auroraeosrose@php.net
-Assigned To: auroraeosrose
+Assigned To: buhlerax
[2016-10-23 15:58 UTC] buhlerax@php.net
-Status: Assigned
+Status: Analyzed
[2016-10-23 15:58 UTC] buhlerax@php.net
[2017-10-24 05:45 UTC] kalle@php.net
-Status: Analyzed
+Status: Assigned
[2017-10-24 07:22 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: buhlerax
+Assigned To:
[2017-10-24 23:13 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-10-24 23:13 UTC] kalle@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 22:00:01 2025 UTC |
Description: ------------ If you create a GdkEvent with the GdkEventType Gdk::KEY_PRESS and try to assign a value to the keyval field the keyval field does not change. Test script: --------------- $event = new GdkEvent(Gdk::KEY_PRESS); $event->keyval = Gdk::KEY_Return; var_dump($event); Expected result: ---------------- object(GdkEvent)#4466 (9) { ["keyval"]=> int(65293) ["time"]=> int(0) ["state"]=> int(0) ["string"]=> string(0) "" ["hardware_keycode"]=> int(0) ["group"]=> int(0) ["type"]=> int(8) ["window"]=> NULL ["send_event"]=> bool(false) } Actual result: -------------- object(GdkEvent)#4466 (9) { ["keyval"]=> int(0) ["time"]=> int(0) ["state"]=> int(0) ["string"]=> string(0) "" ["hardware_keycode"]=> int(0) ["group"]=> int(0) ["type"]=> int(8) ["window"]=> NULL ["send_event"]=> bool(false) }