Index: ui/base/x/x11_util.cc |
diff --git a/ui/base/x/x11_util.cc b/ui/base/x/x11_util.cc |
index b27ca96978812321d3bc68834d280a2b1d5c3b22..524edb648a7f66fa4c7b08ea5958e6d4af4daff6 100644 |
--- a/ui/base/x/x11_util.cc |
+++ b/ui/base/x/x11_util.cc |
@@ -1032,7 +1032,8 @@ bool GetCustomFramePrefDefault() { |
wm == WM_NOTION || |
wm == WM_QTILE || |
wm == WM_RATPOISON || |
- wm == WM_STUMPWM) |
+ wm == WM_STUMPWM || |
+ wm == WM_WMII) |
return false; |
// Handle a few more window managers that don't get along well with custom |
@@ -1259,6 +1260,8 @@ WindowManagerName GuessWindowManager() { |
return WM_RATPOISON; |
if (name == "stumpwm") |
return WM_STUMPWM; |
+ if (name == "wmii") |
+ return WM_WMII; |
if (name == "Xfwm4") |
return WM_XFWM4; |
} |