[Bug 23221] New: AT4RE FastScanner v3.0 UI button animation bug
http://bugs.winehq.org/show_bug.cgi?id=23221 Summary: AT4RE FastScanner v3.0 UI button animation bug Product: Wine Version: 1.2-rc3 Platform: x86-64 URL: https://www.woodmann.com/collaborative/tools/images/Bi n_AT4RE_FastScanner_2010-1-10_4.2_FastScanner_v3.0_Fin al.zip OS/Version: Linux Status: UNCONFIRMED Severity: trivial Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: olerass(a)gmail.com In Windows: When you hover the mouse on any of the buttons in the top menu ("Open", "Options" ...) the buttons change color and when you remove the mouse they change back to the original coler (a mouse-on animation that is). In Wine: The buttons does change color when hovered, but they also change position a bit (their position doesn't change in Windows). Also when removing the mouse the buttons doesn't change back to the original color (like in Windows) or position. -- 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=23221 Ole Rasmussen <olerass(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download -- 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=23221 --- Comment #1 from Ole Rasmussen <olerass(a)gmail.com> 2010-11-11 05:07:43 CST --- Still an issue with Wine 1.3.6. -- 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=23221 Ole Rasmussen <olerass(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|1.2-rc3 |1.1.5 -- 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=23221 Dmitry Timoshkov <dmitry(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|1.1.5 |1.2-rc3 --- Comment #2 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2010-11-12 00:36:28 CST --- (In reply to comment #1)
Still an issue with Wine 1.3.6.
Then is there any reason that you've changed version to 1.1.5? Don't change an originally reported Wine version. -- 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=23221 --- Comment #3 from Ole Rasmussen <olerass(a)gmail.com> 2010-11-12 02:09:28 CST ---
Then is there any reason that you've changed version to 1.1.5? Yes, I tested it on 1.1.5 as well.
Don't change an originally reported Wine version. Sorry, but I was under the impression that the version reflects the earliest known version failing?
-- 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=23221 --- Comment #4 from Ole Rasmussen <olerass(a)gmail.com> 2011-08-01 15:34:41 CDT --- Still present in wine-1.3.25-299-gf932abf. -- 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=23221 Bruno Jesus <00cpxxx(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #5 from Bruno Jesus <00cpxxx(a)gmail.com> --- I can confirm this issue in wine 1.7.11. -- 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=23221 hanska2(a)luukku.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hanska2(a)luukku.com --- Comment #6 from hanska2(a)luukku.com --- I think this works partially. When you hover buttons, it kinda hovers the selection, but when you move the cursor out of the selected button, it doesnt restore the button color. wine 1.7.24 -- 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=23221 --- Comment #7 from hanska2(a)luukku.com --- 1450 /*********************************************************************** 1451 * AnimateWindow (USER32.@) 1452 * Shows/Hides a window with an animation 1453 * NO ANIMATION YET 1454 */ 1455 BOOL WINAPI AnimateWindow(HWND hwnd, DWORD dwTime, DWORD dwFlags) 1456 { 1457 FIXME("partial stub\n"); 1458 1459 /* If trying to show/hide and it's already * 1460 * shown/hidden or invalid window, fail with * 1461 * invalid parameter */ 1462 if(!IsWindow(hwnd) || 1463 (IsWindowVisible(hwnd) && !(dwFlags & AW_HIDE)) || 1464 (!IsWindowVisible(hwnd) && (dwFlags & AW_HIDE))) 1465 { 1466 SetLastError(ERROR_INVALID_PARAMETER); 1467 return FALSE; 1468 } 1469 1470 ShowWindow(hwnd, (dwFlags & AW_HIDE) ? SW_HIDE : ((dwFlags & AW_ACTIVATE) ? SW_SHOW : SW_SHOWNA)); 1471 1472 return TRUE; 1473 } http://source.winehq.org/git/wine.git/blob/622191f7bcdb409f9aafa257e3f5cf6e3... What's wrong here? -- 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=23221 --- Comment #8 from hanska2(a)luukku.com --- Created attachment 49376 --> https://bugs.winehq.org/attachment.cgi?id=49376 1.7.24 That's not full log. I started the program, hovered mouse on every button and pressed close button at the end. AnimateWindow function http://msdn.microsoft.com/en-us/library/windows/desktop/ms632669%28v=vs.85%2... missing some stuff. -- 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=23221 Teras <teras(a)luukku.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |teras(a)luukku.com --- Comment #9 from Teras <teras(a)luukku.com> --- still an issue wine 1.7.37+ (git) -- 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=23221 narri <xqwerty123(a)luukku.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xqwerty123(a)luukku.com --- Comment #10 from narri <xqwerty123(a)luukku.com> --- Still an issue 1.7.42 -- 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=23221 Gijs Vermeulen <gijsvrm(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- URL|https://www.woodmann.com/co |https://web.archive.org/web |llaborative/tools/images/Bi |/20120605083535if_/http://w |n_AT4RE_FastScanner_2010-1- |ww.woodmann.com/collaborati |10_4.2_FastScanner_v3.0_Fin |ve/tools/images/Bin_AT4RE_F |al.zip |astScanner_2010-1-10_4.2_Fa | |stScanner_v3.0_Final.zip --- Comment #11 from Gijs Vermeulen <gijsvrm(a)gmail.com> --- Still present with wine-6.14-212-g2cc98b72846. Adding stable download. $ sha1sum Bin_AT4RE_FastScanner_2010-1-10_4.2_FastScanner_v3.0_Final.zip b9ca4e7ca5642c10d137343fb5c287eda08870fe Bin_AT4RE_FastScanner_2010-1-10_4.2_FastScanner_v3.0_Final.zip $ du -sh Bin_AT4RE_FastScanner_2010-1-10_4.2_FastScanner_v3.0_Final.zip 616K Bin_AT4RE_FastScanner_2010-1-10_4.2_FastScanner_v3.0_Final.zip -- 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.
participants (2)
-
wine-bugs@winehq.org -
WineHQ Bugzilla