https://bugs.winehq.org/show_bug.cgi?id=8914
--- Comment #11 from Sergey Bychkow <sergey.bychkow(a)gmail.com> ---
This problem is really important, it breaks user experience. Sometimes a user
can't access underlying window at all.
I have attached simple test case to see a problem.
When user clicks on hint then button should be clicked, but it doesn't.
// file TestHintWindow.lpr
program TestHintWindow;
// Commandline:
// C:\lazarus\fpc\3.2.0\bin\x86_64-win64\fpc.exe -WG -Pi386
-FuC:\lazarus\lcl\units\i386-win32\win32 -FuC:\lazarus\lcl\units\i386-win32
-FuC:\lazarus\components\lazutils\lib\i386-win32 TestHintWindow.lpr
uses
Interfaces,
Forms,
StdCtrls;
var
aForm: TForm;
aButton: TButton;
begin
Application.Initialize;
Application.HintHidePause := 20000;
Application.CreateForm(TForm, aForm);
aButton := TButton.Create(aForm);
aButton.Caption := 'Button';
aButton.Hint := 'Button';
aButton.Parent := aForm;
aButton.ShowHint := True;
aButton.ClientHeight := 64;
aButton.Left := (aForm.ClientWidth - aButton.Width) div 2;
aButton.Top := (aForm.ClientHeight - aButton.Height) div 2;
Application.Run;
end.
--
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=8914
Sergey Bychkow <sergey.bychkow(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |sergey.bychkow(a)gmail.com
--- Comment #10 from Sergey Bychkow <sergey.bychkow(a)gmail.com> ---
Created attachment 70369
--> https://bugs.winehq.org/attachment.cgi?id=70369
Test hint window can't process clicks on underlying window
--
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=51517
Bug ID: 51517
Summary: Incorrect spliiting of -Wl,key=value arguments in
winegcc
Product: Wine
Version: 6.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: cth451(a)gmail.com
Distribution: ---
In wine 6.13, a regression is introduced where winegcc incorrectly split
"-Wl,--key=value" into two "-Wl,--key" and "-Wl,value" when passing to the
linker.
This is introduced in commit fcda0afdd429e11d75dc61f628e40a6c8973ce44 as meson
would somehow pass "-Wl,--out-implib=something" to winegcc. This commit should
be reverted for the following reasons:
* I believe this is a issue with meson passing the option in this particular
way. According to GNU ld documentation, parameters for "--out-implib" is in
fact space separated. In other words, the right way to invoke this option is
"-Wl,--out-implib,blah".
* This breaks other equal-sign separated option, for instance,
"-Wl,--build-id=sha1". In this case the linker will report "cannot find sha1:
No such file or directory" as winegcc splits this option into "-Wl,--build-id"
and "-Wl,sha1", which of course make no sense for the linker.
This issue is also present in the git master branch.
--
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=51516
Bug ID: 51516
Summary: hags on configuration update
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mombelli.mauro(a)gmail.com
Distribution: ---
Created attachment 70357
--> https://bugs.winehq.org/attachment.cgi?id=70357
winecfg hangs
Since a couple of day, launching previously working 64bit WINEPREFIX will get
stuck to the "The wine configuration in XXX is being updated, please wait"
I let it run for over a hour, even when creating completely new WINEPREFIX.
It looks like by specifying WINEARCH=win32 all works fine.
As attachment the log when tryng to open winecfg on a non-existing WINEPREFIX.
Note ctrl+c is requested after a while, but despite some output being created
the process is still running.
--
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=51514
Bug ID: 51514
Summary: URLDownloadToFileA fails as of wine-6.13 (regression)
Product: Wine
Version: 6.13
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Regression SHA1: 5edf65616a8dcbf5988bbabe0493827d9e125fc3
Distribution: Debian
Created attachment 70356
--> https://bugs.winehq.org/attachment.cgi?id=70356
executable showing the regression
For Waves Central I have made simple program that downloads a prerequisite msi
file (from Powershell-Core`s github page)
This download fails as of wine-6.13
Regression test:
Commit: 5edf65616a8dcbf5988bbabe0493827d9e125fc3
URL:
https://source.winehq.org/git/wine.git/?a=commit;h=5edf65616a8dcbf5988bbabe…
Author: Aaron Hill <aa1ronham at gmail.com>
Date: Mon Jul 12 11:40:50 2021 +0200
crypt32: Implement CNG_RSA_PUBLIC_KEY_BLOB encoding/decoding.
Add support for the OID CNG_RSA_PUBLIC_KEY_BLOB to
CryptEncodeObjectEx and CryptDecodeObjectEx. This OID
decodes to / encodes from memory consisting of a
BCRYPT_RSAKEY_BLOB, followed in memory by the exponent and
modulus in big-endian format.
Attached also stripped down executable: it should download the msi-file, but
currently fails ("Something went wrong :( )
Stripped down source:
#include <stdio.h>
#include <urlmon.h>
#include <wchar.h>
int __cdecl wmain(int argc, WCHAR *argv[])
{
char url[] =
"https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/PowerShel…";
char destination[] = "PowerShell-7.0.3-win-x64.msi";
if( URLDownloadToFileA(NULL, url, destination, 0, NULL) != S_OK )
fprintf(stderr, "Something went wrong :( \n");
else
fwprintf(stderr, L"\033[1;34mFile Successfully Downloaded
\n\033[0m\n");
return 0;
}
--
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=51414
Bug ID: 51414
Summary: PDF x-change viewer 100% crash
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nsynet(a)qq.com
Distribution: ---
Created attachment 70269
--> https://bugs.winehq.org/attachment.cgi?id=70269
crash log
1.launch the PDF x-change viewer(ver 2.5,build 322.10) on ubuntu 18.04.5 LTS
2.open a pdf file
3.search one word in the file and will show the search result
4.click any of the result ,the pdf viewer will crash
--
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=23528
Summary: Eclipse crashes immediately after startup
Product: Wine
Version: 1.2-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex.shtf(a)gmail.com
Created an attachment (id=29371)
--> (http://bugs.winehq.org/attachment.cgi?id=29371)
The log file created in the eclipse directory.
* Install wine 1.2-rc6 on Ubuntu Lucid x86 from the ppa
(http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu lucid main)
* Install JDK for Java 6 update 20 on wine
(http://java.sun.com/javase/downloads/widget/jdk6.jsp)
* Download eclipse 3.6 for windows x86 and extract the zip archive.
* Run eclipse.exe with wine.
The splash screen appears, progress bar reaches 100%, afterwards the welcome
screen appears. Then a second after the welcome screen appears eclipse crashes.
--
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=23776
Summary: Eclipse IDE for Java EE Developers crashes opening new
Java project
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.eclipse.org/downloads/packages/eclipse-ide-
java-ee-developers/heliosr
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
This is a followup of Bug 23528 . After selecting File->New->Java Project the
application crashes. winetricks cc580 is enough to work around the bug. From
the console:
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_INT_DIVIDE_BY_ZERO (0xc0000094) at pc=0x787fa9b3, pid=8, tid=9
# Problematic frame:
# C [comctl32.dll+0x2a9b3]
--
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=24208
Summary: Eclipse (Europa) - html-based Welcome window is blank
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
With current Wine and winegecko 1.1.0 Welcome window shows empty, without any
web content.
A significant (probably) part of a log:
---
err:ole:apartment_getclassobject DllGetClassObject returned error 0x80004002
err:ole:CoGetClassObject no class object {8856f961-340a-11d0-a96b-00c04fd705a2}
could be created for context 0x3
---
This is a CLSID_WebBrowser identifier.
--
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=44215
Bug ID: 44215
Summary: Eclipse (Europa) crashes on start
Product: Wine
Version: 3.0-rc3
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Distribution: ---
Eclipse Europa IDE crashes on start, application-generated crash log seems to
suggest mshtml problem, that happens when loading Welcome window web contents.
For testing I used jre-6u33-windows-i586.exe and
eclipse-cpp-europa-winter-win32.zip. You only need JRE to use it, no overrides.
--
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.