diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-12-17 11:53:26 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-12-17 11:59:19 +0400 |
commit | 6e7299d31a604e58c3f27e5d00eda1210cac6d2a (patch) | |
tree | d7b92a57b5168559504f208254d226c3f2cd1cd3 | |
parent | c358e9abaaee8075bed787de7e79be966e9fee82 (diff) |
fdo#34641: set initial focus to "Number of copies"
-rw-r--r-- | vcl/source/window/printdlg.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx index 61195552c602..b1c9b4b9bf16 100644 --- a/vcl/source/window/printdlg.cxx +++ b/vcl/source/window/printdlg.cxx @@ -902,6 +902,9 @@ PrintDialog::PrintDialog( Window* i_pParent, const boost::shared_ptr<PrinterCont // setup dependencies checkControlDependencies(); + // set initial focus to "Number of copies" + maJobPage.maCopyCountField.GrabFocus(); + maJobPage.maCopyCountField.SetSelection( Selection(0, 0xFFFF) ); } PrintDialog::~PrintDialog() |