http://bugs.winehq.org/show_bug.cgi?id=4871
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.10. |0.9.12.
------- Additional Comments From ilan(a)fonz.net 2006-24-04 10:37 -------
The bug appears to be resolved in 0.9.12, as the application now installs.
--
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=4842
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.9. |0.9.12.
------- Additional Comments From ilan(a)fonz.net 2006-24-04 10:33 -------
Confirmed in 0.9.12
--
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=5115
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
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=4408
------- Additional Comments From Peter.Bienstman(a)UGent.be 2006-24-04 07:12 -------
This patch solves the problem indeed!
Thanks a lot!
--
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=4449
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-24-04 03:39 -------
No, isn't fixed. I think you have put a tahoma.ttf in ~/drive_c/windows/fonts.
>From a clean install Steam's text is still invisible. From comment #8:
>Wine really needs a Tahoma compatible freetype font. Anybody want to create
one?
I could givee it a shot, but how exactly could i do this? I just played around a
bit with fontforge and know a bit how it works now. However, should the font be
build from scratch, or could i just load the tahoma font into fontforge and draw
the glyphs over the existing fonts? And is that legal? Anyone has an exact "howto"?
--
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=5126
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 03:38 -------
By the way, this bug can be worked around by simply commenting out the
assertion. And I can play the games. Bogus assertion? You tell me, after
applying this patch:
--- wine/dlls/comctl32/listview.c.orig 2006-04-23 22:33:38.000000000 -0800
+++ wine/dlls/comctl32/listview.c 2006-04-24 00:21:17.000000000 -0800
@@ -1949,7 +1950,7 @@
if (lpLVItem->iSubItem == 0)
{
State.left += REPORT_MARGINX;
- assert(lpLVItem->mask & LVIF_INDENT);
+ /* assert(lpLVItem->mask & LVIF_INDENT); */
State.left += infoPtr->iconSize.cx * lpLVItem->iIndent;
}
}
--
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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |source
--
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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance, download
--
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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 02:42 -------
Oops. Not a duplicate of bug 5126. This assertion is in a different place.
The following patch fixes this bug but it does not fix bug 5126 so I am
reopening this. Please check this patch over. I am unfamiliar with the
codebase and as such may have hacked it a bit.
--- wine/dlls/comctl32/listview.c.orig 2006-04-23 22:33:38.000000000 -0800
+++ wine/dlls/comctl32/listview.c 2006-04-23 23:10:20.000000000 -0800
@@ -1350,6 +1350,7 @@
static COLUMN_INFO mainItem;
if (nSubItem == 0 && DPA_GetPtrCount(infoPtr->hdpaColumns) == 0) return
&mainItem;
+ if (nSubItem < 0) nSubItem = -nSubItem;
assert (nSubItem >= 0 && nSubItem < DPA_GetPtrCount(infoPtr->hdpaColumns));
return (COLUMN_INFO *)DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
}
--
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.