Disable moving fixed position windows using pager (pfritz, ticket 116).

SVN revision: 37533
This commit is contained in:
Kim Woelders 2008-11-07 17:50:11 +00:00
parent 94baac20f7
commit 50d4aebf3c
1 changed files with 1 additions and 1 deletions

View File

@ -1428,7 +1428,7 @@ PagerHandleMouseDown(Pager * p, int px, int py, int button)
else if (button == Conf_pagers.win_button)
{
ewin = EwinInPagerAt(p, px, py);
if ((ewin) && (ewin->type != EWIN_TYPE_PAGER))
if (ewin && ewin->type != EWIN_TYPE_PAGER && !ewin->state.inhibit_move)
{
PagerHiwinShow(p, ewin, 1, !Mode.wm.window);
Mode.mode = MODE_PAGER_DRAG_PENDING;