fix bg not resizing on reload theme
This commit is contained in:
parent
5fd3ed0fea
commit
97cb8cf192
@ -64,6 +64,9 @@ public:
|
|||||||
// Stop the movie, clearing the image
|
// Stop the movie, clearing the image
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
|
// Stop the movie and clear all vectors
|
||||||
|
void kill();
|
||||||
|
|
||||||
// Set the m_flipped variable to true/false
|
// Set the m_flipped variable to true/false
|
||||||
void set_flipped(bool p_flipped) { m_flipped = p_flipped; }
|
void set_flipped(bool p_flipped) { m_flipped = p_flipped; }
|
||||||
|
|
||||||
|
@ -493,6 +493,16 @@ void AOLayer::freeze()
|
|||||||
preanim_timer->stop();
|
preanim_timer->stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AOLayer::kill()
|
||||||
|
{
|
||||||
|
// used for when we want to ensure a file is loaded anew
|
||||||
|
this->stop();
|
||||||
|
this->clear();
|
||||||
|
movie_frames.clear();
|
||||||
|
movie_delays.clear();
|
||||||
|
last_path = "";
|
||||||
|
}
|
||||||
|
|
||||||
void CharLayer::movie_ticker()
|
void CharLayer::movie_ticker()
|
||||||
{
|
{
|
||||||
AOLayer::movie_ticker();
|
AOLayer::movie_ticker();
|
||||||
|
@ -1299,6 +1299,8 @@ void Courtroom::set_background(QString p_background, bool display)
|
|||||||
ui_vp_objection->stop();
|
ui_vp_objection->stop();
|
||||||
chat_tick_timer->stop();
|
chat_tick_timer->stop();
|
||||||
ui_vp_evidence_display->reset();
|
ui_vp_evidence_display->reset();
|
||||||
|
ui_vp_background->kill();
|
||||||
|
ui_vp_desk->kill();
|
||||||
set_scene(
|
set_scene(
|
||||||
QString::number(ao_app->get_desk_mod(current_char, current_emote)),
|
QString::number(ao_app->get_desk_mod(current_char, current_emote)),
|
||||||
current_side);
|
current_side);
|
||||||
|
Loading…
Reference in New Issue
Block a user