all repos — fluxbox @ 0fab25bfd29b657c5f92ad4e417d0719a960cb1e

custom fork of the fluxbox windowmanager

we dont remove the scrolllock() modifier from the keystate anymore -> lead to problems with altgr on german-keyboards -> no @ in textbox's possible.
akir akir
commit

0fab25bfd29b657c5f92ad4e417d0719a960cb1e

parent

fbbd335dce41891795cacbfea4ed8014adddf75d

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/FbTk/KeyUtil.hhsrc/FbTk/KeyUtil.hh

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: KeyUtil.hh,v 1.7 2003/12/31 11:57:47 fluxgen Exp $ +// $Id: KeyUtil.hh,v 1.8 2004/10/08 11:51:16 akir Exp $ #ifndef FBTK_KEYUTIL_HH #define FBTK_KEYUTIL_HH

@@ -67,7 +67,7 @@ @return the cleaned state number

*/ unsigned int cleanMods(unsigned int mods) { //remove numlock, capslock and scrolllock - return mods & ~(capslock() | numlock() | scrolllock()); + return mods & ~(capslock() | numlock() ); } /**