Add option to use server timestamp from the message instead of the local clock time for logging. (#6346)

This commit is contained in:
droidicus
2025-07-27 06:11:13 -04:00
committed by GitHub
parent 154c436063
commit 1423f548a7
6 changed files with 45 additions and 3 deletions
@@ -590,6 +590,17 @@ void SettingWidget::addTo(GeneralPageView &view, QFormLayout *formLayout)
formLayout->addRow(this->label, this->actionWidget);
}
void SettingWidget::addToLayout(QLayout *layout)
{
if (this->label == this->actionWidget)
{
layout->addWidget(this->actionWidget);
return;
}
assert(false && "unimplemented");
}
void SettingWidget::registerWidget(GeneralPageView &view)
{
if (this->label != nullptr)