aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrystalwarrior <varsash@gmail.com>2019-10-20 01:44:54 +0300
committerCrystalwarrior <varsash@gmail.com>2019-10-20 01:44:54 +0300
commit3605f223d2f8bf0548f9a9802b470fdbc4d71ba3 (patch)
tree2e94f14e8e45f65450d8d5edbd975f6f332cb57c
parent6d7a6d7398dcb74550e7722c4b1436f42d00123c (diff)
Fix input bg's not being transparent
FIx chat_tick_timer not stopping when you receive a bg
-rw-r--r--src/courtroom.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp
index 5a7f0d24..7cb5cf39 100644
--- a/src/courtroom.cpp
+++ b/src/courtroom.cpp
@@ -628,13 +628,14 @@ void Courtroom::set_widgets()
ui_muted->setToolTip(tr("Oops, you're muted!"));
set_size_and_pos(ui_ooc_chat_message, "ooc_chat_message");
- ui_ooc_chat_message->setToolTip(tr("Type your message to display in the server chat here."));
+ ui_ooc_chat_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);");
set_size_and_pos(ui_ooc_chat_name, "ooc_chat_name");
- ui_ooc_chat_name->setToolTip(tr("Set your name to display in the server chat."));
+ ui_ooc_chat_name->setStyleSheet("background-color: rgba(0, 0, 0, 0);");
//set_size_and_pos(ui_area_password, "area_password");
set_size_and_pos(ui_music_search, "music_search");
+ ui_music_search->setStyleSheet("background-color: rgba(0, 0, 0, 0);");
set_size_and_pos(ui_emote_dropdown, "emote_dropdown");
ui_emote_dropdown->setToolTip(tr("Set your character's emote to play on your next message."));
@@ -1020,10 +1021,13 @@ void Courtroom::set_background(QString p_background, bool display)
{
ui_vp_speedlines->stop();
ui_vp_player_char->stop();
+
ui_vp_sideplayer_char->stop();
ui_vp_effect->stop();
ui_vp_message->hide();
ui_vp_chatbox->hide();
+
+ chat_tick_timer->stop();
set_scene(QString::number(ao_app->get_desk_mod(current_char, current_emote)), current_side);
}
}