diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2002-08-24 09:38:56 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2002-08-24 09:38:56 +0000 |
| commit | e9c1208ff453eb7f3b10a1346252e26c8d7c3fcd (patch) | |
| tree | 2e091cfdcbe9976b0cfb776d2ca1166add6f0f8d /util/epist | |
| parent | 81cdff06930cb38f2138d7b41187d1e516b9e379 (diff) | |
Safari_Al's patch which fixes inconsistent capitalization in some actions.
Diffstat (limited to 'util/epist')
| -rw-r--r-- | util/epist/actions.hh | 4 | ||||
| -rw-r--r-- | util/epist/epistrc | 4 | ||||
| -rw-r--r-- | util/epist/parser.cc | 4 | ||||
| -rw-r--r-- | util/epist/screen.cc | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh index 6fdd48f0..ac6d62b5 100644 --- a/util/epist/actions.hh +++ b/util/epist/actions.hh @@ -39,8 +39,8 @@ public: raise, //done lower, //done close, //done - toggleshade, //done - toggleomnipresent, //done + toggleShade, //done + toggleOmnipresent, //done moveWindowUp, //done moveWindowDown, //done moveWindowLeft, //done diff --git a/util/epist/epistrc b/util/epist/epistrc index ca3a82ba..04094ed2 100644 --- a/util/epist/epistrc +++ b/util/epist/epistrc @@ -29,8 +29,8 @@ Control-Mod1-Shift-x { r raise; l lower; k close; - s toggleshade; - o toggleomnipresent; + s toggleShade; + o toggleOmnipresent; 1 sendToWorkspace 1; 2 sendToWorkspace 2; diff --git a/util/epist/parser.cc b/util/epist/parser.cc index d7ac2c13..7741d2f7 100644 --- a/util/epist/parser.cc +++ b/util/epist/parser.cc @@ -68,8 +68,8 @@ void parser::setAction(string act) { "raise", Action::raise }, { "lower", Action::lower }, { "close", Action::close }, - { "toggleshade", Action::toggleshade }, - { "toggleomnipresent", Action::toggleomnipresent }, + { "toggleShade", Action::toggleShade }, + { "toggleOmnipresent", Action::toggleOmnipresent }, { "movewindowup", Action::moveWindowUp }, { "movewindowdown", Action::moveWindowDown }, { "movewindowleft", Action::moveWindowLeft }, diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 0f8dfa56..3ece9e16 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -294,7 +294,7 @@ void screen::handleKeypress(const XEvent &e) { window->sendTo(it->number()); return; - case Action::toggleomnipresent: + case Action::toggleOmnipresent: if (window->desktop() == 0xffffffff) window->sendTo(_active_desktop); else @@ -329,7 +329,7 @@ void screen::handleKeypress(const XEvent &e) { window->resizeRel(0, it->number()); return; - case Action::toggleshade: + case Action::toggleShade: window->shade(! window->shaded()); return; |
