From: Shamus Hammons Date: Wed, 5 Dec 2012 19:19:37 +0000 (-0600) Subject: Fix to show user's notes when they log in. X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=schematic;a=commitdiff_plain;h=2747436a24ed44b39e4cb899297f3ccc2ff46e27 Fix to show user's notes when they log in. --- 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); }