Minor fixes
This commit is contained in:
@@ -136,7 +136,7 @@ namespace Nz
|
||||
assert(glyphCount > 0);
|
||||
|
||||
std::size_t startIndex = GetCharacterPosition(m_text, GetGlyphIndex(selectionBegin));
|
||||
std::size_t endIndex = GetCharacterPosition(m_text, std::min(GetGlyphIndex(selectionEnd), glyphCount - 1));
|
||||
std::size_t endIndex = GetCharacterPosition(m_text, std::min(GetGlyphIndex(selectionEnd), glyphCount));
|
||||
|
||||
Clipboard::SetString(m_text.substr(startIndex, endIndex - startIndex));
|
||||
}
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace Nz
|
||||
m_opaqueMaterial->AddPass("ForwardPass", m_opaqueMaterialPass);
|
||||
|
||||
m_transparentMaterialPass = std::make_shared<MaterialPass>(BasicMaterial::GetSettings());
|
||||
m_transparentMaterialPass->EnableFlag(MaterialPassFlag::Transparent);
|
||||
m_transparentMaterialPass->EnableDepthBuffer(true);
|
||||
m_transparentMaterialPass->EnableDepthWrite(false);
|
||||
m_transparentMaterialPass->EnableBlending(true);
|
||||
|
||||
Reference in New Issue
Block a user