From 7ae55987ec012074592b27c847ff7faa9f6474df Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 23 Oct 2003 15:14:00 +0000 Subject: [PATCH] Patch level : 2.0 614 Files correlati : ba0.exe Ricompilazione Demo : [ ] Commento : MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EP20127 In visualizzazione Explorer non funziona il comado font e colori per cambiare i colori delle maschere EP20129 Da file impostazioni stampanti seleziono la satmpante di rete HP LaserJet 2100 Series PCL 6 caricata con il suo driver. Non è possibile selezionare nessun font perché non presenti. git-svn-id: svn://10.65.10.50/trunk@11527 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- ba/ba0100.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ba/ba0100.cpp b/ba/ba0100.cpp index a0ce086cd..7e5e29c48 100755 --- a/ba/ba0100.cpp +++ b/ba/ba0100.cpp @@ -247,12 +247,20 @@ TPicture_mask::~TPicture_mask() class TExplorer_mask : public TMask { protected: + virtual bool stop_run(KEY k); virtual bool on_key(KEY k); public: TExplorer_mask(); }; +bool TExplorer_mask::stop_run(KEY k) +{ + if (k == K_CTRL+'R') + return TWindow::stop_run(k); + return TMask::stop_run(k); +} + bool TExplorer_mask::on_key(KEY k) { if (k == K_F3 || k == K_F8)