зеркало из https://github.com/mozilla/pjs.git
Bug 230081, use proper cursors for frameset border resizing, r=dbaron
This commit is contained in:
Родитель
2ac881d164
Коммит
f346087031
|
@ -838,7 +838,7 @@ nsHTMLFramesetFrame::GetCursor(const nsPoint& aPoint,
|
|||
nsIFrame::Cursor& aCursor)
|
||||
{
|
||||
if (mDragger) {
|
||||
aCursor.mCursor = (mDragger->mVertical) ? NS_STYLE_CURSOR_W_RESIZE : NS_STYLE_CURSOR_N_RESIZE;
|
||||
aCursor.mCursor = (mDragger->mVertical) ? NS_STYLE_CURSOR_EW_RESIZE : NS_STYLE_CURSOR_NS_RESIZE;
|
||||
} else {
|
||||
aCursor.mCursor = NS_STYLE_CURSOR_DEFAULT;
|
||||
}
|
||||
|
@ -1820,7 +1820,7 @@ nsHTMLFramesetBorderFrame::GetCursor(const nsPoint& aPoint,
|
|||
if (!mCanResize) {
|
||||
aCursor.mCursor = NS_STYLE_CURSOR_DEFAULT;
|
||||
} else {
|
||||
aCursor.mCursor = (mVertical) ? NS_STYLE_CURSOR_W_RESIZE : NS_STYLE_CURSOR_N_RESIZE;
|
||||
aCursor.mCursor = (mVertical) ? NS_STYLE_CURSOR_EW_RESIZE : NS_STYLE_CURSOR_NS_RESIZE;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче