Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 28cae92

Browse files
committed
fixed step order in status tables
1 parent aeadd21 commit 28cae92

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/duqf-app/app-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define VERSION_MAJOR 0
55
#define VERSION_MINOR 8
6-
#define VERSION_BUILD 5
6+
#define VERSION_BUILD 6
77
#define VERSION_SUFFIX "Beta"
88

99
#define STRINGIFY_VERSION(A, B, C) CONCAT(A, B, C )

src/ramobjects/ramproject.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -588,11 +588,11 @@ void RamProject::construct()
588588
m_steps = new DBTableModel(RamObject::Step, true, true, this);
589589
m_steps->addFilterValue( "project", this->uuid() );
590590

591-
m_shotSteps = new DBTableModel(RamObject::Step, true, false, this);
591+
m_shotSteps = new DBTableModel(RamObject::Step, true, true, this);
592592
m_shotSteps->addFilterValue( "project", this->uuid() );
593593
m_shotSteps->addFilterValue( "type", "shot" );
594594

595-
m_assetSteps = new DBTableModel(RamObject::Step, true, false, this);
595+
m_assetSteps = new DBTableModel(RamObject::Step, true, true, this);
596596
m_assetSteps->addFilterValue( "project", this->uuid() );
597597
m_assetSteps->addFilterValue( "type", "asset" );
598598

0 commit comments

Comments
 (0)