Add a check for invalid position preference.

This happens if the user has switched to a window smaller than previous, where their preference is now invalid.
Fixes splitter at top when viewing mail in smaller window.
This commit is contained in:
Nathan Gray 2014-02-18 16:55:55 +00:00
parent 73523fbecc
commit a7a1474229

View File

@ -186,8 +186,12 @@ var et2_split = et2_DOMWidget.extend([et2_IResizeable],
var pref = this.egw().preference('splitter-size-' + this.id, this.egw().getAppName());
if(pref)
{
options = $j.extend(options, pref);
this.prefSize = pref[this.orientation == "v" ?'sizeLeft' : 'sizeTop'];
if(this.orientation == "v" && pref['sizeLeft'] < this.dynheight.outerNode.width() ||
this.orientation == "h" && pref['sizeTop'] < this.dynheight.outerNode.height())
{
options = $j.extend(options, pref);
this.prefSize = pref[this.orientation == "v" ?'sizeLeft' : 'sizeTop'];
}
}
}