mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Added some settings:
1) Quicksetting for the mouse-cursor capture. 2) A force grayscale for the printer. 3) Expert settings: a) Autoreduce colors b) Footer pattern c) RDP optimize d) thumbnails in context menu git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1808 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
83a033ebd0
commit
8e4ac16006
7 changed files with 175 additions and 56 deletions
|
@ -108,6 +108,9 @@ namespace Greenshot.Helpers {
|
|||
try {
|
||||
if (!cancelled) {
|
||||
printDocument.PrinterSettings.PrinterName = printerName;
|
||||
if (conf.OutputPrintGrayscale) {
|
||||
printDocument.DefaultPageSettings.Color = false;
|
||||
}
|
||||
printDocument.Print();
|
||||
returnPrinterSettings = printDocument.PrinterSettings;
|
||||
}
|
||||
|
@ -139,6 +142,9 @@ namespace Greenshot.Helpers {
|
|||
}
|
||||
try {
|
||||
if (!cancelled) {
|
||||
if (conf.OutputPrintGrayscale) {
|
||||
printDocument.DefaultPageSettings.Color = false;
|
||||
}
|
||||
printDocument.Print();
|
||||
returnPrinterSettings = printDialog.PrinterSettings;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue