diff options
| author | Salanto <62221668+Salanto@users.noreply.github.com> | 2024-07-31 11:55:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 11:55:25 +0200 |
| commit | 4d1b0517e3d5704b26df7d8a9a492d182d36ea4b (patch) | |
| tree | 3c88dca3a7a4591e59cf36b8faa60cff9569995f /src/widgets/moderator_dialog.h | |
| parent | e82726ba5b4a2faf8caea747789d71f1e717f7f8 (diff) | |
V2.11.0 rc1 fixes (#1029)
* Use unix timestamp to transmit ban duration
* Cleanup compiler warning due to narrowing conversion
* Fix preanim not being visible
This is apparently not a feature we want from WebAO :^)
* Bump to RC2
* Use std::chrono instead
* Remove random include and debug call
Diffstat (limited to 'src/widgets/moderator_dialog.h')
| -rw-r--r-- | src/widgets/moderator_dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/widgets/moderator_dialog.h b/src/widgets/moderator_dialog.h index 648f979d..558080f0 100644 --- a/src/widgets/moderator_dialog.h +++ b/src/widgets/moderator_dialog.h @@ -27,7 +27,9 @@ private: QWidget *ui_widget; QComboBox *ui_action; - QSpinBox *ui_duration; + QSpinBox *ui_duration_mm; + QSpinBox *ui_duration_hh; + QSpinBox *ui_duration_dd; QLabel *ui_duration_label; QCheckBox *ui_permanent; QTextEdit *ui_details; |
