fixed XDG popups yet again + removed some old TODOs

This commit is contained in:
vaxerski 2022-04-10 16:47:19 +02:00
parent 92bfe6f13e
commit 71916ee09a
5 changed files with 10 additions and 15 deletions

View file

@ -2,14 +2,12 @@
#include "../Compositor.hpp"
void CInputManager::onMouseMoved(wlr_pointer_motion_event* e) {
// TODO: sensitivity
float sensitivity = g_pConfigManager->getFloat("general:sensitivity");
wlr_cursor_move(g_pCompositor->m_sWLRCursor, &e->pointer->base, e->delta_x * sensitivity, e->delta_y * sensitivity);
mouseMoveUnified(e->time_msec);
// todo: pointer
}
void CInputManager::onMouseWarp(wlr_pointer_motion_absolute_event* e) {

View file

@ -40,8 +40,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t
// this little maneouver is gonna cost us 4µs
const auto KBKEY = xkb_keysym_from_name(k.key.c_str(), XKB_KEYSYM_CASE_INSENSITIVE);
const auto KBKEYUPPER = xkb_keysym_to_upper(KBKEY);
// TODO: fix 0-9 keys and other modified ones with shift
// or mention in the fucking wiki
// small TODO: fix 0-9 keys and other modified ones with shift
if (key != KBKEY && key != KBKEYUPPER)
continue;