diff options
author | bd <bdunahu@operationnull.com> | 2025-04-01 23:22:12 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-01 23:22:12 -0400 |
commit | 9e30d0054e7b3eb10e4e464b12ae3cc1eecc9585 (patch) | |
tree | 5f49ef6a4e6f7529ac0d92fa7c5f3326d4140066 /gui/gui.cc | |
parent | 05a873027d01cdf6318d67b77a4eaad120b05527 (diff) |
Fix bug with decode pushing checked_out when delayed with RAW
Diffstat (limited to 'gui/gui.cc')
-rw-r--r-- | gui/gui.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -63,7 +63,7 @@ void displayArrayHTML(QTextEdit *textEdit, const std::array<int, GPR_NUM> &data) QString tableText = "<table border='1' cellspacing='0' cellpadding='8' style='border-collapse: collapse; width: 100%; border: 2px solid black;'>"; tableText += "<tr>"; - int index = 1; + int index = 0; for (int value : data) { tableText += QString("<td align='center' style='border: 2px solid black; min-width: 60px; padding: 10px;'>" "%1 <sup style='font-size: 10px; font-weight: bold; color: black;'>%2</sup>" @@ -83,7 +83,7 @@ void displayTableHTML(QTextEdit *textEdit, const std::vector<std::array<signed i textEdit->setReadOnly(false); QString tableText = "<table border='1' cellspacing='0' cellpadding='8' style='border-collapse: collapse; width: 100%; border: 2px solid black;'>"; - int index = 1; + int index = 0; for (const auto &row : data) { tableText += "<tr>"; for (signed int value : row) { @@ -118,7 +118,7 @@ void browseAndUploadFile(QTextEdit *textEdit) { QTextStream in(&file); QString content; - int lineNumber = 1; + int lineNumber = 0; while (!in.atEnd()) { QString line = in.readLine(); |