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
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
src/FbTk/KeyUtil.hh
→
src/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() ); } /**