* Status.15x: add two new bugs (one from Kornel); rearrange bugs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16130 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2006-12-02 14:23:06 +00:00
parent 52dc269fae
commit 5b3f0b69f4

View File

@ -24,11 +24,11 @@ GENERAL
* Resolve compiler warnings
* LyX tries to delete /tmp if it is called with invalid arguments
FILE
* LyX tries to delete /tmp if it is called with invalid arguments
* Loading de_Userguide.lyx results in two parse errors:
Paragraph ended in line 21206
Missing \end_layout.
@ -38,6 +38,26 @@ FILE
* Non-ascii filenames do not work at all and result in an assertion or garbage.
* open lyx, create a new document, enter a few chars, quit. Lyx does not
ask if you want to save the file.
* Change Tools->Preferences->User interface->User interface to something like
"kornel.default.ui"; save prefs; exit LyX; restart LyX; => crash;
in the preferences file, there is an entry \bind_file "/Something/kornel.default"
In QPrefsDialog.C:1736, function PrefUserInterface::select_ui() calls
form_->controller().browseUI(qstring_to_ucs4(uiFileED->text())))
which in turn calls
ControlPrefs.C:118
browseLibFile(lyx::from_ascii("ui"), file, lyx::from_ascii("ui"),
_("Choose UI file"), FileFilterList(_("LyX UI files (*.ui)")));
In this function, the extension is removed, because it is the default ("ui" in
this case). This behaviour applies to
ControlPrefs::browsebind, ControlPrefs::browseUI
ControlPrefs::browsekbmap, ControlPrefs::browsedict
Setting the default extension here to something invalid, is a hack, but works.
(Invalid may be e.g. "*")
SPELL CHECKING (Joost 4/11/06)
@ -106,6 +126,7 @@ OTHER PANELS
disappears after closing and reopening the panel.
(Enrico 2006-12-01)
MULTIPLE WINDOWS / DOCUMENTS
* There are cursor problems when the same document is opened in two windows
@ -170,10 +191,12 @@ LAYOUT
PAINTING & PERFORMANCE
* In the splash screen, the LyX version number is printed with a very, very
small font size such that it becomes almost invisible on Windows.
* END_LABEL_* handling in RowPainer::paintLast() is broken. In regular text,
label boxes are not completely visible (because we shrinked the margin on
screen?). Inside of insets, they don't work at all. Should we remove this
feature completely as the overall benefit for the user is marginal?
screen?). Inside of insets, they don't work at all.
* Too much painting 2 (Edwin 3/11/2006): There is also a lot of painting going
on when selecting text. When selecting a word the whole screen is repainted.
@ -235,11 +258,6 @@ PAINTING & PERFORMANCE
correct font is found and used (cmr10).
REGRESSIONS
* open lyx, create a new document, enter a few chars, quit. Lyx does not
ask if you want to save the file.
BUILDING
* It is ridiculous that you have to call configure with --with-frontend=qt4.