gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-taler-ios] 21/35: fanblades.slash and clock.badge.xmark not in iO


From: gnunet
Subject: [taler-taler-ios] 21/35: fanblades.slash and clock.badge.xmark not in iOS 15
Date: Thu, 27 Jul 2023 09:09:54 +0200

This is an automated email from the git hooks/post-receive script.

marc-stibane pushed a commit to branch master
in repository taler-ios.

commit 4e71ef07ac6965ba311aa30349e72657d31f8451
Author: Marc Stibane <marc@taler.net>
AuthorDate: Mon Jul 24 16:42:50 2023 +0200

    fanblades.slash and clock.badge.xmark not in iOS 15
---
 TalerWallet1/Views/HelperViews/TransactionButton.swift | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/TalerWallet1/Views/HelperViews/TransactionButton.swift 
b/TalerWallet1/Views/HelperViews/TransactionButton.swift
index ed4f3fa..4c17030 100644
--- a/TalerWallet1/Views/HelperViews/TransactionButton.swift
+++ b/TalerWallet1/Views/HelperViews/TransactionButton.swift
@@ -49,19 +49,23 @@ struct TransactionButton: View {
                     switch command {
                         case .delete:
                             Text("Delete from list" + spaces)
-                            Image(systemName: "trash")                  // 􀈑
+                            Image(systemName: "trash")                         
 // 􀈑
                         case .abort:
                             Text("Abort" + spaces)
-                            Image(systemName: "x.circle")               // 􀀲
+                            Image(systemName: "x.circle")                      
 // 􀀲
                         case .fail:
                             Text("Fail" + spaces)
-                            Image(systemName: "fanblades.slash")        // 􁝚
+                            Image(systemName: "play.slash")                    
 // 􀪅
                         case .suspend:
                             Text("Suspend" + spaces)
-                            Image(systemName: "clock.badge.xmark")      // 􁜒
+                            if #available(iOS 16.0, *) {
+                                Image(systemName: "clock.badge.xmark")         
 // 􁜒
+                            } else {
+                                Image(systemName: 
"clock.badge.exclamationmark")// 􀹶
+                            }
                         case .resume:
                             Text("Resume" + spaces)
-                            Image(systemName: "clock.arrow.circlepath") // 􀣔
+                            Image(systemName: "clock.arrow.circlepath")        
 // 􀣔
                     }
                 }
             }
@@ -70,7 +74,6 @@ struct TransactionButton: View {
         })
         .buttonStyle(.bordered)
         .controlSize(.large)
-        .padding(.horizontal)
         .disabled(disabled)
     }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]