B2016-067: Copy/paste/property edit of section caused format to change
B2016-064: Reviewer can no longer copy/paste steps via keyboard shortcut F5
This commit is contained in:
parent
b400a27cd4
commit
235024bef4
@ -80,7 +80,7 @@ namespace VEPROMS
|
|||||||
private void btnSectPropOK_Click(object sender, EventArgs e)
|
private void btnSectPropOK_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
sectionConfigBindingSource.EndEdit();
|
sectionConfigBindingSource.EndEdit();
|
||||||
|
|
||||||
// Save Default settings for User
|
// Save Default settings for User
|
||||||
//
|
//
|
||||||
// Save whether we should display the default values on this property page
|
// Save whether we should display the default values on this property page
|
||||||
@ -467,6 +467,7 @@ namespace VEPROMS
|
|||||||
// for word docs, no enhanced controls should be visible:
|
// for word docs, no enhanced controls should be visible:
|
||||||
grpLnkEnh.Visible = false;
|
grpLnkEnh.Visible = false;
|
||||||
}
|
}
|
||||||
|
ppCmbxFormat.SelectedValue = _SectionConfig.FormatSelection;
|
||||||
_Initializing = false;
|
_Initializing = false;
|
||||||
//_InitialIndex = ppCmbxFormat.SelectedIndex;
|
//_InitialIndex = ppCmbxFormat.SelectedIndex;
|
||||||
}
|
}
|
||||||
|
@ -2244,6 +2244,11 @@ namespace Volian.Controls.Library
|
|||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
break;
|
break;
|
||||||
case Keys.F5:
|
case Keys.F5:
|
||||||
|
if (!UserInfo.CanEdit(MyUserInfo, MyItemInfo.MyDocVersion))
|
||||||
|
{
|
||||||
|
e.Handled = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (e.Shift)
|
if (e.Shift)
|
||||||
{
|
{
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user