Skip to content

Commit

Permalink
Move ic_copy to symbol_copy
Browse files Browse the repository at this point in the history
  • Loading branch information
p1gp1g committed Feb 15, 2023
1 parent 6afeb8e commit 7765b7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ class UnifiedPushSettingsFragment : DSLSettingsFragment(R.string.NotificationsSe
clickPref(
title = DSLSettingsText.from(getString(R.string.UnifiedPushSettingsFragment__server_parameters)),
summary = DSLSettingsText.from(getString(R.string.UnifiedPushSettingsFragment__click_to_copy)),
iconEnd = DSLSettingsIcon.from(R.drawable.ic_copy_24),
iconEnd = DSLSettingsIcon.from(R.drawable.symbol_copy_android_24),
onClick = { writeTextToClipboard(requireContext(), "Server parameters", getServerParameters(state)) },
)
} else {

clickPref(
title = DSLSettingsText.from(getString(R.string.UnifiedPushSettingsFragment__account_id)),
summary = DSLSettingsText.from(state.device?.uuid ?: getString(R.string.UnifiedPushSettingsFragment__unknown)),
iconEnd = DSLSettingsIcon.from(R.drawable.ic_copy_24),
iconEnd = DSLSettingsIcon.from(R.drawable.symbol_copy_android_24),
onClick = {
writeTextToClipboard(requireContext(), "Account ID", state.device?.uuid ?: getString(R.string.UnifiedPushSettingsFragment__unknown))
},
Expand Down

0 comments on commit 7765b7f

Please sign in to comment.