http://bugs.winehq.org/show_bug.cgi?id=2400
------- Additional Comments From zhilla(a)spymac.com 2005-09-10 10:05 -------
ok, just to summarize additional info from duplicate of this bug i posted (sorry about that)... not just
hungarian. using hr (croatian) keyboard. also tried slovenian, a person using certain german charset
had problem as well. i think they all inherit some keys from an xorg template or something like that.
it does not happen in regular xorg apps, or in crossover office.
so yes, bug is still active... using 8/10/2005 cvs version.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3531
richard(a)daijobu.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From richard(a)daijobu.co.uk 2005-09-10 09:05 -------
*** This bug has been marked as a duplicate of 2400 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2400
richard(a)daijobu.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |zhilla(a)spymac.com
------- Additional Comments From richard(a)daijobu.co.uk 2005-09-10 09:05 -------
*** Bug 3531 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3532
Summary: Regression - Dialog Oscillates Between Two Sizes
Product: Wine
Version: 20050930
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch http://cvs.winehq.org/patch.py?id=20473 introduces a bug whereby a dialog
window oscillates rapidly between its normal size and a very minimal size. The
app in which I observed this behaviour is ChessBase Light.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3531
Summary: delete button produces "delete,"
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P4
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zhilla(a)spymac.com
using hr (croatian) keyboard. also tried slovenian, and read about people having problem with
hungarian and certain german charsets. (i think they all inherit some keys from an xorg template or
something like that)
pressing "delete" button (one not on numpad) does not just delete next character, instead it outputs
"delete," (like replacing next char with "," and moving cursor) - it seems numlock button is affecting
this.
it does not happen in regular xorg apps, or in crossover office.
i was digging around and found a hack that fixes the issue. please accept it as a clue to what is wrong,
and not the real fix.
--- dlls/x11drv/keyboard.c.orig 2005-05-05 23:33:23.000000000 +0200
+++ dlls/x11drv/keyboard.c 2005-05-05 23:38:44.000000000 +0200
@@ -1067,11 +1067,14 @@
else
XLookupString(e, NULL, 0, &keysym, NULL);
- if ((keysym >= 0xFFAE) && (keysym <= 0xFFB9) && (keysym != 0xFFAF)
- && (e->state & NumLockMask))
- /* Only the Keypad keys 0-9 and . send different keysyms
- * depending on the NumLock state */
- return nonchar_key_vkey[keysym & 0xFF];
+ if (e->state & NumLockMask) /* NumLock is active */
+ { if (keysym == 0xFFAC) /* Numeric Del pressed */
+ return keyc2vkey[0x3B]; /* comma */
+ if ((keysym >= 0xFFAE) && (keysym <= 0xFFB9) && (keysym != 0xFFAF))
+ /* Only the Keypad keys 0-9 and . send different keysyms
+ * depending on the NumLock state */
+ return nonchar_key_vkey[keysym & 0xFF];
+ }
TRACE_(key)("e->keycode = %x\n", e->keycode);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=833
------- Additional Comments From eric.pouech(a)wanadoo.fr 2005-09-10 07:09 -------
No it's not supported yet, and won't make it for 0.9. Perhaps 1.0. The ugly part
here is not to implement the function call itself, but rather to get the correct
calling convention for a function. As of today, stabs debug format doesn't
provide this which may be a bit trickier to find.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3526
------- Additional Comments From marcus(a)jet.franken.de 2005-09-10 06:24 -------
can you post 100 lines around the _first_ instance of err:heap: in the whole
trace?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.