]> git.lyx.org Git - lyx.git/commitdiff
Comment out too verbose debug output
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 10 Apr 2024 12:06:30 +0000 (14:06 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 10 Apr 2024 12:06:30 +0000 (14:06 +0200)
src/TextMetrics.cpp

index 93d433459898436a8cec175499b0ff4dd4a19444..ce8cfe552d476d8a523d4a86f27b2b0a3b9244fe 100644 (file)
@@ -1547,8 +1547,8 @@ pit_type TextMetrics::getPitNearY(int y)
        }
 
        for (; it != et; ++it) {
-               LYXERR(Debug::PAINTING, "examining: pit: " << it->first
-                       << " y: " << it->second.position());
+               // LYXERR(Debug::PAINTING, "examining: pit: " << it->first
+               //      << " y: " << it->second.position());
 
                if (it->first >= pit && it->second.top() <= y) {
                        pit = it->first;