Re: [PATCH 2/2] winemac: Add support for a DisableWindowDecorations registry setting.
Nov. 21, 2013
12:45 p.m.
Ken Thomases <ken(a)codeweavers.com> writes:
@@ -166,6 +167,9 @@ static void setup_options(void) if (!get_config_key(hkey, appkey, "AllowSoftwareRendering", buffer, sizeof(buffer))) allow_software_rendering = IS_OPTION_TRUE(buffer[0]);
+ if (!get_config_key(hkey, appkey, "DisableWindowDecorations", buffer, sizeof(buffer))) + disable_window_decorations = IS_OPTION_TRUE(buffer[0]); +
Disable-style options should be avoided, the double negatives are confusing for users. Also using the same option name as the X11 driver for the same feature may be a good idea. -- Alexandre Julliard julliard(a)winehq.org
4508
Age (days ago)
4508
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard