mirror of https://github.com/odrling/Aegisub
Select current style when the style manager is opened
Originally committed to SVN as r6421.
This commit is contained in:
parent
f0933ecb1a
commit
439b1272b0
|
@ -181,10 +181,10 @@ DialogStyleManager::DialogStyleManager(agi::Context *context)
|
|||
CurrentList->Bind(wxEVT_KEY_DOWN, &DialogStyleManager::OnKeyDown, this);
|
||||
|
||||
// Select default item
|
||||
wxString selected_style;
|
||||
if (AssDialogue *dia = context->selectionController->GetActiveLine()) {
|
||||
selected_style = dia->Style;
|
||||
}
|
||||
if (AssDialogue *dia = context->selectionController->GetActiveLine())
|
||||
CurrentList->SetStringSelection(dia->Style);
|
||||
else
|
||||
CurrentList->SetSelection(0);
|
||||
|
||||
UpdateButtons();
|
||||
|
||||
|
|
Loading…
Reference in New Issue