Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-client-uwp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-client-uwp
Commits
3f7f5533
Commit
3f7f5533
authored
8 years ago
by
Nicolas Jager
Browse files
Options
Downloads
Patches
Plain Diff
fix : smartpanel, show alias instead of accountid.
Change-Id: I838ea45b428d22d8514bc3ec6f2b45f8178160da Tuleap: #1219
parent
d0830772
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
SmartPanel.xaml.cpp
+3
-3
3 additions, 3 deletions
SmartPanel.xaml.cpp
with
3 additions
and
3 deletions
SmartPanel.xaml.cpp
+
3
−
3
View file @
3f7f5533
...
@@ -134,12 +134,12 @@ RingClientUWP::Views::SmartPanel::updatePageContent()
...
@@ -134,12 +134,12 @@ RingClientUWP::Views::SmartPanel::updatePageContent()
if
(
!
account
)
if
(
!
account
)
return
;
return
;
auto
accountId
=
account
->
accountID
_
;
auto
name
=
account
->
name
_
;
Configuration
::
UserPreferences
::
instance
->
PREF_ACCOUNT_INDEX
=
_accountsList_
->
SelectedIndex
;
Configuration
::
UserPreferences
::
instance
->
PREF_ACCOUNT_INDEX
=
_accountsList_
->
SelectedIndex
;
Configuration
::
UserPreferences
::
instance
->
save
();
Configuration
::
UserPreferences
::
instance
->
save
();
_selectedAccountName_
->
Text
=
accountId
;
_selectedAccountName_
->
Text
=
name
;
/// _devicesIdList_->ItemsSource = account->_devicesIdList;
/// _devicesIdList_->ItemsSource = account->_devicesIdList;
_deviceId_
->
Text
=
account
->
_deviceId
;
/* this is the current device ...
_deviceId_
->
Text
=
account
->
_deviceId
;
/* this is the current device ...
... in the way to get all associated devices, we have to querry the daemon : */
... in the way to get all associated devices, we have to querry the daemon : */
...
@@ -148,7 +148,7 @@ RingClientUWP::Views::SmartPanel::updatePageContent()
...
@@ -148,7 +148,7 @@ RingClientUWP::Views::SmartPanel::updatePageContent()
?
Windows
::
UI
::
Xaml
::
Visibility
::
Visible
?
Windows
::
UI
::
Xaml
::
Visibility
::
Visible
:
Windows
::
UI
::
Xaml
::
Visibility
::
Collapsed
;
:
Windows
::
UI
::
Xaml
::
Visibility
::
Collapsed
;
RingD
::
instance
->
askToRefreshKnownDevices
(
accountId
);
RingD
::
instance
->
askToRefreshKnownDevices
(
name
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment