Skip to content

Commit

Permalink
fix for build for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
CyAn84 committed Oct 30, 2024
1 parent 609d299 commit 850ab1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/ui/controllers/listViewFocusController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ int ListViewFocusController::currentIndex() const

void ListViewFocusController::nextDelegate()
{
qDebug() << "===>> [nextDelegate... current section: " << SectionNames[static_cast<int>(m_currentSection)] << " ]";
const auto sectionName = SectionNames[static_cast<int>(m_currentSection)];
qDebug() << "===>> [nextDelegate... current section: " << sectionName << " ]";
switch(m_currentSection) {
case Section::Default: {
if(hasHeader()) {
Expand Down

0 comments on commit 850ab1c

Please sign in to comment.