Version: 1.6.0 (using KDE 3.5.5, Debian Package 4:3.5.5a-1 (testing/unstable)) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.17-ck1-p4s When you enter a newline character on the cell(see http://bugs.kde.org/show_bug.cgi?id=136180) and you don't enable the word wrapping on that cell, then new character is represented by a weird character.
Bah, wrong number. Closing. SVN commit 598972 by nikolaus: Fix "Lower cell line delimiter disappears" BUG: 136179 M +5 -0 kspread_editors.cc --- branches/koffice/1.6/koffice/kspread/kspread_editors.cc #598971:598972 @@ -1199,6 +1199,11 @@ return true; } } + else if ( k->state() & Qt::ShiftButton && ( k->key() == Key_Return || k->key() == Key_Enter ) ) + { + // enable content wrapping + d->cell->format()->setMultiRow( true ); + } // End choosing. May be restarted by CellEditor::slotTextChanged if ( e->type() == QEvent::KeyPress && !k->text().isEmpty() ) {
You need to log in before you can comment on or make changes to this bug.