diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-07 13:06:20 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-07 13:06:20 -0500 |
| commit | a382d33c0424afe11fd99dd232b4ece4ed899ee2 (patch) | |
| tree | 8039ac56abf6b657ce2aa7a80466bb5bb2cdcd0c | |
| parent | cb89a1f15534df95f0ff96695cd363a4f229255b (diff) | |
| download | dwm-a382d33c0424afe11fd99dd232b4ece4ed899ee2.tar.gz | |
disabled override on left-left
This was preventing mouse interactions with windows. I'll need to figure
out a different way of doing this.
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 30c992f..0bd44da 100644 --- a/config.def.h +++ b/config.def.h @@ -420,7 +420,7 @@ static Button buttons[] = { { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, { ClkClientWin, MODKEY|ShiftMask, Button1, view, {0} }, - { ClkClientWin, 0, Button1, t0_view, {0} }, + //{ ClkClientWin, 0, Button1, t0_view, {0} }, { ClkTagBar, 0, Button1, view, {0} }, { ClkTagBar, 0, Button3, toggleview, {0} }, { ClkTagBar, MODKEY, Button1, tag, {0} }, |