Skip to content

Commit

Permalink
Sugarchain: revert: GUI: remove: show seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ak committed Feb 7, 2019
1 parent e31233e commit ba1e7ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/qt/guiutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace GUIUtil {

QString dateTimeStr(const QDateTime &date)
{
return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm:ss");
return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm");
}

QString dateTimeStr(qint64 nTime)
Expand Down
2 changes: 1 addition & 1 deletion src/qt/receivecoinsdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ReceiveCoinsDialog : public QDialog

public:
enum ColumnWidths {
DATE_COLUMN_WIDTH = 139,
DATE_COLUMN_WIDTH = 130,
LABEL_COLUMN_WIDTH = 120,
AMOUNT_MINIMUM_COLUMN_WIDTH = 180,
MINIMUM_COLUMN_WIDTH = 130
Expand Down
4 changes: 2 additions & 2 deletions src/qt/transactionview.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ class TransactionView : public QWidget
enum ColumnWidths {
STATUS_COLUMN_WIDTH = 30,
WATCHONLY_COLUMN_WIDTH = 23,
DATE_COLUMN_WIDTH = 139,
DATE_COLUMN_WIDTH = 120,
TYPE_COLUMN_WIDTH = 113,
AMOUNT_MINIMUM_COLUMN_WIDTH = 139,
AMOUNT_MINIMUM_COLUMN_WIDTH = 120,
MINIMUM_COLUMN_WIDTH = 23
};

Expand Down

0 comments on commit ba1e7ad

Please sign in to comment.