http://bugs.winehq.org/show_bug.cgi?id=25651
Lance lancerdot@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED
--- Comment #6 from Lance lancerdot@gmail.com 2011-02-01 21:40:39 CST --- Found a fix that I hope works for others. :)
I am assuming you have Compiz and "CompizConfig Settings Manager" installed.
1. Open the CompizConfig Settings Manager. 2. Enter "Window Rules" (without quotes) into the Filter and click on the resulting icon. 3. Add the text "(name=war3.exe)" (without quotes) to the "non-resizable windows" text box. 4. Click on the "Size rules" tab. 5. Click "New", enter "(name=war3.exe)" (once again, without quotes) into the "Sized Windows" text box. 6. Select your desired window width/height (in my case, 1280x800 was optimal). 7. Close the CompizConfig Settings Manager. 8. Create a bash script that switches to Compiz before running Warcraft III (example below).
--- BASH --- # Use compiz. compiz --replace &
# Run Warcraft III (change "'Frozen Throne.exe'" to the correct path) wine "Frozen Throne.exe" -opengl -window $@ --- END BASH ---