Display path number

This commit is contained in:
T'JAMPENS QUENTIN p2406187 2025-06-19 23:22:19 +02:00
parent ce6614e29d
commit 4f508adbb9
2 changed files with 6 additions and 1 deletions

View File

@ -100,6 +100,11 @@ void MainWindow::loadPath()
if(!steps.isEmpty()) { if(!steps.isEmpty()) {
ui->stepTitle->setText(p->getStep().first().getTitle()); ui->stepTitle->setText(p->getStep().first().getTitle());
} }
int pathCount = path.length();
ui->pathNumber->setMaximum(pathCount);
ui->pathNumber->setSuffix("/" + QString::number(pathCount));
ui->pathNumber->setValue(path.indexOf(currentPath)+1);
} }
void MainWindow::addNewPath() void MainWindow::addNewPath()

View File

@ -57,7 +57,7 @@
<property name="frameShadow"> <property name="frameShadow">
<enum>QFrame::Shadow::Raised</enum> <enum>QFrame::Shadow::Raised</enum>
</property> </property>
<widget class="QSpinBox" name="spinBox"> <widget class="QSpinBox" name="pathNumber">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>10</x> <x>10</x>