http://bugs.winehq.org/show_bug.cgi?id=24785
Summary: Explorer++: tile view doesn't work
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31335)
--> (http://bugs.winehq.org/attachment.cgi?id=31335)
Complete terminal output
To reproduce, click view -> tiles. Nothing happens, it just looks the same as
the default icon view. This looks pretty suspicious:
fixme:listview:LISTVIEW_SetView View LV_VIEW_TILE unimplemented
I can't test with the native comctl32, though (it crashes the program on
startup).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19371
Summary: BCArchive: encoutners unknown toolbar style
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://www.jetico.com/encryption-bcarchive/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: bunglehead(a)gmail.com
fixme:toolbar:TOOLBAR_SetExtendedStyle Unknown Toolbar Extended Style
0x00000020. Please report.
Native comctl32 'fixes' it. There's not major visual flaw afaict, but the fixme
does say to report it ;-).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52466
Bug ID: 52466
Summary: Toolbar: Wrong size returned by TB_GETMAXSIZE message
for toolbars with TBSTYLE_WRAPABLE style
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: yal(a)csoftcom.com
Distribution: ---
Under Windows (I've tested Win10/11) TB_GETMAXSIZE always returns size for
single row of buttons regardless of wrapped it or not. WINE calculates size for
current wrapping. For example: under Win toolbar with initial size (0,0) and 2
buttons (20,20) TB_GETMAXSIZE always returns(40,20), WINE returns (20,40) - 2
rows wrapping.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=52465
Bug ID: 52465
Summary: Toolbar: Wrong TB_GETBUTTON message processing,
returns (-1) instead of separator width in TBBUTTON
structure
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: yal(a)csoftcom.com
Distribution: ---
>From MSDN documents about TB_GETBUTTON : If the button is a separator, that is,
if fsStyle is set to BTNS_SEP, iBitmap determines the width of the separator,
in pixels.
So, this code needs to change:
/wine/dlls/comctl32/toolbar.c:3373
static LRESULT
TOOLBAR_GetButton (const TOOLBAR_INFO *infoPtr, INT nIndex, TBBUTTON *lpTbb)
{
---------------------------<cut>------------------------
/*From MSDN documents: If the button is a separator, that is, if fsStyle is
set to BTNS_SEP,
iBitmap determines the width of the separator, in pixels*/
lpTbb->iBitmap = (btnPtr->fsStyle & BTNS_SEP) ? SEPARATOR_WIDTH :
btnPtr->iBitmap;
---------------------------<cut>------------------------
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23077
Summary: UltraEdit 16.10: Plus sign doesn't appear in directory
tree
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=28652)
--> (http://bugs.winehq.org/attachment.cgi?id=28652)
Image showing the problem
Steps to reproduce:
1) remove ~/.wine
2) install UltraEdit
3) wine Uedit32.exe
4) close all popup windows (buy now, tip of the day etc.)
5) In "File View" Window click on plus sign of "C" then "Program Files"
6) Click on plus sign of "Internet Explorer" branch will unfold, plus sign
changes to minus sign
7) Click on minus sign of "Internet Explorer" branch will fold
Behaviour:
After seventh step minus sign of "Internet Explorer" stays minus sign and I
cannot unfold that branch anymore
Expected behaviour:
After seventh step minus sign of "Internet Explorer" should convert itself into
plus sign and I should have ability to unfold the branch
In terminal I get only
fixme:win:LockWindowUpdate (0x100a0), partial stub!
fixme:win:LockWindowUpdate ((nil)), partial stub!
for every successful fold/unfold operation
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49280
Bug ID: 49280
Summary: Possible usage of null pointer line_def in edit.c
Product: Wine
Version: 5.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal54(a)gmail.com
Distribution: ---
`line_def` may be null(based on condition on while loop) but is used later
`line_def->width`
```
while (line_def && line_idx)
{
line_def = line_def->next;
line_idx--;
}
w = es->format_rect.right - es->format_rect.left;
lw = line_def->width;
```
https://github.com/wine-mirror/wine/blob/f0ad5b5c546d17b281aef13fde996cda08…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15741
Summary: Emule: Configuration asistant window is not repainted
correctly
Product: Wine
Version: 1.1.6
Platform: Other
URL: http://www.emule-project.net
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=16836)
--> (http://bugs.winehq.org/attachment.cgi?id=16836)
Screenshot in WinXP
The first time you run eMule, a configuration window will appear and after you
pass to the second step, the background of the first window will still remain
in the back. Check the screenshots.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15743
Summary: eMule: Misplaced info in the widgets
Product: Wine
Version: 0.9.16.
Platform: PC
URL: http://www.emule-project.net
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=16841)
--> (http://bugs.winehq.org/attachment.cgi?id=16841)
Screenshot in WinXP
Looks like the info in the tabs is around 1 o 2 pixels lower than they should.
Check the screenshots.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40416
Bug ID: 40416
Summary: Attempts to open some dialogs causing programs to
softlock
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hagepri2013(a)gmail.com
In some programs, attempting to open certain dialogs causes the program to
freeze without responding. This behavior can be observed in the most recent
version of 0CC-Famitracker, found here: http://hertzdevil.info/programs/
Attempting to open the configuration dialog (marked by a hammer in the top bar)
will cause the program to hang. The program will also hang when attempting to
modify any new instrument.
Is there some bug with Wine dispatching Windows dialogs? This program is
developed in Visual Studio 2015.
http://prntscr.com/ao0x5n
This screenshot depicts the button which will cause the hang. The program will
continue to produce sound and the oscilloscope will continue to move as well,
but the rest of the program will freeze.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23225
Summary: Cyberboard Player: missing control buttons
Product: Wine
Version: 1.2-rc3
Platform: x86
URL: http://cyberboard.brainiac.com/cyberboardv310.exe
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=28904)
--> (http://bugs.winehq.org/attachment.cgi?id=28904)
Wine vs WinXP
There are at least 3 missing control buttons in Cyberboard Player. Attachment
shows that better. I tried many wine versions since 0.9.49 till
1.2-rc3, but it probably never worked correctly.
To reproduce: "File" -> "Open" -> "GenericGame.gam"
I left this in UNCONFIRMED, but someones confirmation is welcomed ;)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.