diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2021-01-28 15:38:15 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-28 22:38:15 +0100 |
| commit | 639d4738db70388beca94a219d4f48d6b7356b07 (patch) | |
| tree | 0187f2ed959e2f8c456f38f45fb7f1bc9fe49c21 /include/courtroom.h | |
| parent | 3683e54501c0dd2c0b025f45b09e5a3d7c669be7 (diff) | |
Improvements to the way the position dropdown is handled (#428)
* it works
* woops
* oops 2 electric boogaloo
* fix "SP" packet not working properly
Diffstat (limited to 'include/courtroom.h')
| -rw-r--r-- | include/courtroom.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/courtroom.h b/include/courtroom.h index fe3a1713..04b166f2 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -165,7 +165,7 @@ public: void set_background(QString p_background, bool display = false); // sets the local character pos/side to use. - void set_side(QString p_side); + void set_side(QString p_side, bool block_signals=true); // sets the pos dropdown void set_pos_dropdown(QStringList pos_dropdowns); @@ -659,6 +659,7 @@ private: QComboBox *ui_emote_dropdown; QComboBox *ui_pos_dropdown; + AOButton *ui_pos_remove; QComboBox *ui_iniswap_dropdown; AOButton *ui_iniswap_remove; @@ -836,6 +837,7 @@ private slots: void on_emote_dropdown_changed(int p_index); void on_pos_dropdown_changed(int p_index); + void on_pos_remove_clicked(); void on_iniswap_dropdown_changed(int p_index); void set_iniswap_dropdown(); |
