summaryrefslogtreecommitdiff
authorhash <hash>2002-10-24 17:56:48 (UTC)
committer hash <hash>2002-10-24 17:56:48 (UTC)
commit3773cd825129f1cc6fa7a4ecb4129634f5189984 (patch) (unidiff)
treed10cc2c4e45e2b47eddcae5534f59ce8f90092b1
parentb01703c4b1de7006c88aa814ca00472b966b2464 (diff)
downloadopie-3773cd825129f1cc6fa7a4ecb4129634f5189984.zip
opie-3773cd825129f1cc6fa7a4ecb4129634f5189984.tar.gz
opie-3773cd825129f1cc6fa7a4ecb4129634f5189984.tar.bz2
closing a session returns keyboard to default better now
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index ce65052..5f3b5ec 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -15,2 +15,5 @@
15 15
16#define DEFAULT_ROWS 2
17#define DEFAULT_COLS 11
18
16/* FunctionKeyboard {{{1 */ 19/* FunctionKeyboard {{{1 */
@@ -18,3 +21,3 @@
18FunctionKeyboard::FunctionKeyboard(QWidget *parent) : 21FunctionKeyboard::FunctionKeyboard(QWidget *parent) :
19 QFrame(parent), numRows(2), numCols(11), 22 QFrame(parent), numRows(DEFAULT_ROWS), numCols(DEFAULT_COLS),
20 pressedRow(0), pressedCol(0) { 23 pressedRow(0), pressedCol(0) {
@@ -225,2 +228,6 @@ void FunctionKeyboard::loadDefaults() {
225 228
229 numRows = DEFAULT_ROWS;
230 numCols = DEFAULT_COLS;
231 keyWidth = (double)width()/numCols; // have to reset this thing too
232
226 keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0)); 233 keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0));