]> git.lyx.org Git - lyx.git/blobdiff - Status.15x
* Status.15x: add new bug reported by Peter
[lyx.git] / Status.15x
index 783acf7642c8fd4cbc9338637866765eb26dbd66..47f271cb8fb0dd796c3f5699bfed54bf3ab78f3c 100644 (file)
@@ -133,8 +133,6 @@ TOOLBARS & MINIBUFFER
   
 * TODO toolbar popup menu, currently disabled (Peter 9/11/06)  
 
-* M-x is broken (does not bring up the minibuffer).
-
 * Command completion in the minibuffer shows a huge blank area below the proposed
   commands. Clicking in that empty area crashes LyX.
 
@@ -146,6 +144,20 @@ EDITING
 
 * Copy/paste using middle mouse button inserts musical notes.
 
+* open a file; mark with the mouse and scroll; assert will fail:
+
+  Row const & LyXText::getRowNearY(BufferView const & bv, int y, pit_type pit) const
+  {
+       Paragraph const & par = pars_[pit];
+       int yy = bv.coordCache().get(this, pit).y_ - par.ascent();
+       BOOST_ASSERT(!par.rows().empty());
+       RowList::const_iterator rit = par.rows().begin();
+       RowList::const_iterator const rlast = boost::prior(par.rows().end());
+       for (; rit != rlast; yy += rit->height(), ++rit)
+               if (yy + rit->height() > y)
+                       break;
+       return *rit;
+  }
 
 MENUS
 
@@ -411,3 +423,7 @@ CREDITS:
 
 * Items in the TOC cannot be moved using drag & drop (Joost 4/11/06).
   WONTFIX (Abdel 2006-11-17): at least not for 1.5.0, this is just candy anyway.
+
+* M-x is broken (does not bring up the minibuffer).
+  FIXED (Bo, 2006-11-18): set toolbar flag in display function.
+