diff options
| -rw-r--r-- | data/rc.xml | 12 | ||||
| -rw-r--r-- | openbox/dock.c | 3 |
2 files changed, 8 insertions, 7 deletions
diff --git a/data/rc.xml b/data/rc.xml index d96568ef..42b45cce 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -12,7 +12,7 @@ <focus> <focusNew>yes</focusNew> - <focusLast>no</focusLast> + <focusLast>yes</focusLast> <followMouse>no</followMouse> <focusDelay>200</focusDelay> <raiseOnFocus>no</raiseOnFocus> @@ -41,7 +41,7 @@ <animateIconify>yes</animateIconify> <font place="ActiveWindow"> <name>sans</name> - <size>7</size> + <size>8</size> <!-- font size in points --> <weight>bold</weight> <!-- 'bold' or 'normal' --> @@ -50,7 +50,7 @@ </font> <font place="InactiveWindow"> <name>sans</name> - <size>7</size> + <size>8</size> <!-- font size in points --> <weight>bold</weight> <!-- 'bold' or 'normal' --> @@ -59,9 +59,9 @@ </font> <font place="MenuHeader"> <name>sans</name> - <size>8</size> + <size>9</size> <!-- font size in points --> - <weight>bold</weight> + <weight>normal</weight> <!-- 'bold' or 'normal' --> <slant>normal</slant> <!-- 'italic' or 'normal' --> @@ -70,7 +70,7 @@ <name>sans</name> <size>9</size> <!-- font size in points --> - <weight>bold</weight> + <weight>normal</weight> <!-- 'bold' or 'normal' --> <slant>normal</slant> <!-- 'italic' or 'normal' --> diff --git a/openbox/dock.c b/openbox/dock.c index 697261e2..8967b8b1 100644 --- a/openbox/dock.c +++ b/openbox/dock.c @@ -414,7 +414,8 @@ void dock_configure() if (!dock->dock_apps) { STRUT_PARTIAL_SET(dock_strut, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); - } else if (config_dock_floating || config_dock_nostrut) { + } else if (config_dock_floating || config_dock_nostrut || config_dock_hide) + { STRUT_PARTIAL_SET(dock_strut, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); } else { |
