Allow adding full-view annotations.

This commit is contained in:
Bartosz Taudul 2022-03-15 17:26:12 +01:00
parent ba4b261ae4
commit 4be2aa0682
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -16135,9 +16135,20 @@ void View::DrawAnnotationList()
ImGui::SetNextWindowSize( ImVec2( 600 * scale, 300 * scale ), ImGuiCond_FirstUseEver );
ImGui::Begin( "Annotation list", &m_showAnnotationList );
if( ImGui::GetCurrentWindowRead()->SkipItems ) { ImGui::End(); return; }
if( ImGui::Button( ICON_FA_PLUS " Add annotation" ) )
{
AddAnnotation( m_vd.zvStart, m_vd.zvEnd );
}
ImGui::SameLine();
ImGui::SeparatorEx( ImGuiSeparatorFlags_Vertical );
ImGui::SameLine();
if( m_annotations.empty() )
{
ImGui::TextWrapped( "No annotations." );
ImGui::Separator();
ImGui::End();
return;
}