From 2747436a24ed44b39e4cb899297f3ccc2ff46e27 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Wed, 5 Dec 2012 13:19:37 -0600 Subject: [PATCH] Fix to show user's notes when they log in. --- src/mainwin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mainwin.cpp b/src/mainwin.cpp index 77ceed7..5feacc5 100644 --- a/src/mainwin.cpp +++ b/src/mainwin.cpp @@ -196,9 +196,10 @@ MainWindow::MainWindow(): aboutWin(new AboutWindow(this)), } scmWidget = new SCMWidget(this); - scmWidget->currentUID = loggedInUID; QString s = QString("User: %1 (%2)").arg(fullName).arg(login); scmWidget->username->setText(s); + scmWidget->currentUID = loggedInUID; + scmWidget->UpdateNotes(); setCentralWidget(scmWidget); } -- 2.37.2