mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
FEATURE-731: Backport of the title detection code
This commit is contained in:
parent
4a0ec2448f
commit
1d0bdf23c1
17 changed files with 1080 additions and 447 deletions
|
@ -295,7 +295,7 @@ namespace Greenshot {
|
|||
private void UpdateClipboardFormatDescriptions() {
|
||||
foreach(ListViewItem item in listview_clipboardformats.Items) {
|
||||
ClipboardFormat cf = (ClipboardFormat) item.Tag;
|
||||
item.Text = Language.Translate(cf);
|
||||
item.Text = Language.Translate(cf);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -592,12 +592,12 @@ namespace Greenshot {
|
|||
CheckDestinationSettings();
|
||||
}
|
||||
|
||||
protected override void OnFieldsFilled() {
|
||||
// the color radio button is not actually bound to a setting, but checked when monochrome/grayscale are not checked
|
||||
if(!radioBtnGrayScale.Checked && !radioBtnMonochrome.Checked) {
|
||||
radioBtnColorPrint.Checked = true;
|
||||
}
|
||||
}
|
||||
protected override void OnFieldsFilled() {
|
||||
// the color radio button is not actually bound to a setting, but checked when monochrome/grayscale are not checked
|
||||
if(!radioBtnGrayScale.Checked && !radioBtnMonochrome.Checked) {
|
||||
radioBtnColorPrint.Checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the enable state of the expert settings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue