This commit is contained in:
parent
d207a0eefa
commit
385bfc09e0
@ -733,8 +733,8 @@ namespace Volian.Controls.Library
|
||||
MessageBox.Show("Too many Word Documents Open. Please close one of the Documents before attempting to open another");
|
||||
return null;
|
||||
}
|
||||
if ((myItemInfo.MyContent.MyEntry.MyDocument.LibTitle ?? "") != "")
|
||||
MessageBox.Show("WARNING: All edits made to this Library Document will be applied to all uses of the Document");
|
||||
//if ((myItemInfo.MyContent.MyEntry.MyDocument.LibTitle ?? "") != "")
|
||||
// MessageBox.Show("WARNING: All edits made to this Library Document will be applied to all uses of the Document");
|
||||
pg = new DisplayTabItem(this.components, this, myItemInfo, key); // Open a new document page
|
||||
_MyDisplayTabItems.Add(key, pg);
|
||||
}
|
||||
|
@ -188,6 +188,10 @@ namespace Volian.Controls.Library
|
||||
Tooltip = _Tooltip;
|
||||
}
|
||||
private string _Tooltip;
|
||||
public void SetPrivateTooltip(string tt)
|
||||
{
|
||||
_Tooltip = tt;
|
||||
}
|
||||
void DisplayTabItem_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
|
||||
{
|
||||
string newTooltip = e.Y > 30 ? null : _Tooltip;
|
||||
|
Loading…
x
Reference in New Issue
Block a user