Make go to flow widget themable

This commit is contained in:
luisangelsm
2026-01-24 18:43:25 +01:00
parent 3bdbf4424b
commit 7b6055e76d
17 changed files with 191 additions and 33 deletions

View File

@ -40,6 +40,16 @@ GoToFlowWidget::GoToFlowWidget(QWidget *parent, FlowType flowType)
resize(static_cast<int>(5 * imageSize.width()), toolBar->height() + static_cast<int>(imageSize.height() * 1.7));
this->setCursor(QCursor(Qt::ArrowCursor));
initTheme(this);
}
void GoToFlowWidget::applyTheme(const Theme &theme)
{
auto goToFlowTheme = theme.goToFlowWidget;
flow->setBackgroundColor(goToFlowTheme.flowBackgroundColor);
flow->setTextColor(goToFlowTheme.flowTextColor);
}
GoToFlowWidget::~GoToFlowWidget()