-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index e327098..7021fae 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp | |||
@@ -223,17 +223,17 @@ VMemo::VMemo( QWidget *parent, const char *_name ) | |||
223 | if( toggleKey != -1 ) { | 223 | if( toggleKey != -1 ) { |
224 | QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)"); | 224 | QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)"); |
225 | // e << 4096; // Key_Escape | 225 | // e << 4096; // Key_Escape |
226 | // e << Key_F5; //4148 | 226 | // e << Key_F5; //4148 |
227 | e << toggleKey; | 227 | e << toggleKey; |
228 | e << QString("QPE/VMemo"); | 228 | e << QString("QPE/VMemo"); |
229 | e << QString("toggleRecord()"); | 229 | e << QString("toggleRecord()"); |
230 | } | 230 | } |
231 | if( vmCfg.readNumEntry("hideIcon",0) == 1) | 231 | if( vmCfg.readNumEntry("hideIcon",0) == 1 || toggleKey > 0) |
232 | hide(); | 232 | hide(); |
233 | } | 233 | } |
234 | } | 234 | } |
235 | 235 | ||
236 | VMemo::~VMemo() | 236 | VMemo::~VMemo() |
237 | { | 237 | { |
238 | } | 238 | } |
239 | 239 | ||