Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
[GUI] Fixed tables headers values.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Apr 23, 2017
1 parent c911cde commit 19cae63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GUI/src/tablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ TableModel::TableModel(QUndoStack *stack, int min, int max, int def, bool single
mPermanent = permanent;
mSinglerow = singlerow;
this->mId = 0;
this->fill(false);

const int defaultRpm[] = {0, 2000, 4000, 5500, 7000, 8000, 9000,
10000, 11000, 12000, 13000, 14000, 15000, 16000,
Expand All @@ -31,6 +30,8 @@ TableModel::TableModel(QUndoStack *stack, int min, int max, int def, bool single
{
mDefaultTps.append(defaultTps[i]);
}

this->fill(false);
}

TableModel::~TableModel()
Expand Down

0 comments on commit 19cae63

Please sign in to comment.