diff options
| author | Crystalwarrior <Varsash@Gmail.com> | 2022-05-21 17:12:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-21 16:12:24 +0200 |
| commit | a1edef048f2cef816106c0fb89b8764e7f715cc4 (patch) | |
| tree | d222e565072d89c4093bbb35c95f1795989a700d | |
| parent | 9214952aea767f3b1feebda7d497bbdd07cf8586 (diff) | |
Remove "debug_log" moniker for debug log and reuse ms_chatlog so old themes don't break (#716)
| -rw-r--r-- | src/courtroom.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 51e260dd..e84f9235 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -734,8 +734,7 @@ void Courtroom::set_widgets() ui_ic_chatlog->setPlaceholderText(log_goes_downwards ? "▼ " + tr("Log goes down") + " ▼" : "▲ " + tr("Log goes up") + " ▲"); - set_size_and_pos(ui_debug_log, "ms_chatlog"); // Old name - set_size_and_pos(ui_debug_log, "debug_log"); // New name + set_size_and_pos(ui_debug_log, "ms_chatlog"); // Old name, still use it to not break compatibility ui_debug_log->setFrameShape(QFrame::NoFrame); set_size_and_pos(ui_server_chatlog, "server_chatlog"); |
