<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Small but noticeable lag when selecting shapes with sidebar enabled"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=105500#c9">Comment # 9</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Small but noticeable lag when selecting shapes with sidebar enabled"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=105500">bug 105500</a>
from <span class="vcard"><a class="email" href="mailto:iplaw67@tuta.io" title="Alex Thurgood <iplaw67@tuta.io>"> <span class="fn">Alex Thurgood</span></a>
</span></b>
<pre>In PaletteManager.cxx :
line 109:
pPalette.reset(new PaletteSOC(aFileStat.getFileURL(), aFNameWithoutExt));
in the following block:
{
std::unique_ptr<Palette> pPalette;
if( aFName.endsWithIgnoreAsciiCase(".gpl") )
pPalette.reset(new
PaletteGPL(aFileStat.getFileURL(), aFNameWithoutExt));
else if( aFName.endsWithIgnoreAsciiCase(".soc") )
pPalette.reset(new
PaletteSOC(aFileStat.getFileURL(), aFNameWithoutExt));
else if ( aFName.endsWithIgnoreAsciiCase(".ase") )
pPalette.reset(new
PaletteASE(aFileStat.getFileURL(), aFNameWithoutExt));
if( pPalette && pPalette->IsValid() )
m_Palettes.push_back( std::move(pPalette) );
aNames.insert(aFNameWithoutExt);
}
seems to be invoked numerous times and not released.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>