mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 05:23:24 -07:00
Changed the date/time on prints to a configurable footer, using the patterns of the filename, didn't change the GUI yet. Changed default to date/time (local format) + capturetitle.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1707 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
0722cbfe22
commit
d824b8e893
7 changed files with 60 additions and 36 deletions
|
@ -52,7 +52,7 @@ namespace Greenshot.Forms {
|
|||
this.AllowPrintRotate = this.checkboxAllowRotate.Checked = conf.OutputPrintAllowRotate;
|
||||
this.AllowPrintShrink = this.checkboxAllowShrink.Checked = conf.OutputPrintAllowShrink;
|
||||
this.PrintInverted = this.checkboxPrintInverted.Checked = conf.OutputPrintInverted;
|
||||
this.PrintDateTime = this.checkboxDateTime.Checked = conf.OutputPrintTimestamp;
|
||||
this.PrintDateTime = this.checkboxDateTime.Checked = conf.OutputPrintFooter;
|
||||
this.checkbox_dontaskagain.Checked = false;
|
||||
UpdateUI();
|
||||
}
|
||||
|
@ -82,7 +82,7 @@ namespace Greenshot.Forms {
|
|||
conf.OutputPrintAllowEnlarge = this.AllowPrintEnlarge;
|
||||
conf.OutputPrintAllowRotate = this.AllowPrintRotate;
|
||||
conf.OutputPrintAllowShrink = this.AllowPrintShrink;
|
||||
conf.OutputPrintTimestamp = this.PrintDateTime;
|
||||
conf.OutputPrintFooter = this.PrintDateTime;
|
||||
conf.OutputPrintInverted = this.PrintInverted;
|
||||
conf.OutputPrintPromptOptions = !this.checkbox_dontaskagain.Checked;
|
||||
IniConfig.Save();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue