Skip to content

Commit c3e5103

Browse files
authored
improve language for previews (#1084)
1 parent a8156ed commit c3e5103

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/emotes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ void Courtroom::show_emote_menu(const QPoint &pos)
268268
QString f_pre = ao_app->get_pre_emote(current_char, emote_num);
269269
if (!f_pre.isEmpty() && f_pre != "-")
270270
{
271-
emote_menu->addAction("Preview pre: " + f_pre, this, [this, f_pre] { preview_emote(f_pre, kal::CharacterAnimationLayer::PreEmote); });
271+
emote_menu->addAction("Preview preanimation: " + f_pre, this, [this, f_pre] { preview_emote(f_pre, kal::CharacterAnimationLayer::PreEmote); });
272272
}
273273

274274
QString f_emote = ao_app->get_emote(current_char, emote_num);
@@ -280,7 +280,7 @@ void Courtroom::show_emote_menu(const QPoint &pos)
280280
// if there is a (c) animation
281281
if (file_exists(ao_app->find_image(c_paths)))
282282
{
283-
emote_menu->addAction("Preview segway: " + f_emote, this, [this, f_emote] { preview_emote(f_emote, kal::CharacterAnimationLayer::PostEmote); });
283+
emote_menu->addAction("Preview postanimation: " + f_emote, this, [this, f_emote] { preview_emote(f_emote, kal::CharacterAnimationLayer::PostEmote); });
284284
}
285285
}
286286
emote_menu->popup(button->mapToGlobal(pos));

0 commit comments

Comments
 (0)