X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Factions.cc;h=c629006aeedd5f8ef9b47851c811a5e26cd1cd49;hb=feaf3ac4e5847d27e3747b09e7443915afa97b0b;hp=9659b2f0cebfa03a3e89bfee0ef22bc95c1beba8;hpb=1dac42d9ed074bcd44f9d1016b0971ae473cc2eb;p=chaz%2Fopenbox diff --git a/src/actions.cc b/src/actions.cc index 9659b2f0..c629006a 100644 --- a/src/actions.cc +++ b/src/actions.cc @@ -145,7 +145,8 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e) data.action = MouseAction::Click; openbox->bindings()->fireButton(&data); - long dblclick = openbox->screen(screen)->config().double_click_delay; + long dblclick = 0; + python_get_long("double_click_delay", &dblclick); if (e.time - _release.time < (unsigned)dblclick && _release.win == e.window && _release.button == e.button) { @@ -303,7 +304,8 @@ void Actions::motionHandler(const XMotionEvent &e) if (!_dragging) { int dx = x_root - _press.pos.x(); int dy = y_root - _press.pos.y(); - long threshold = openbox->screen(screen)->config().drag_threshold; + long threshold = 0; + python_get_long("drag_threshold", &threshold); if (!(std::abs(dx) >= threshold || std::abs(dy) >= threshold)) return; // not at the threshold yet }