diff --git a/CubeTime/Sessions/ImportExport.swift b/CubeTime/Sessions/ImportExport.swift index 346bdba..f14a9bd 100644 --- a/CubeTime/Sessions/ImportExport.swift +++ b/CubeTime/Sessions/ImportExport.swift @@ -121,7 +121,7 @@ struct ExportFlowPickFormats: View { HStack { Text(format.getName()) - .font(.title2.weight(.semibold)) + .font(.title3.weight(.semibold)) .foregroundColor(Color("dark")) Spacer() diff --git a/CubeTime/Sessions/SessionsView.swift b/CubeTime/Sessions/SessionsView.swift index 75f9b28..5800461 100644 --- a/CubeTime/Sessions/SessionsView.swift +++ b/CubeTime/Sessions/SessionsView.swift @@ -40,6 +40,7 @@ struct SessionsView: View { .imageScale(.small) } + /* Button() { showImport = true } label: { @@ -47,9 +48,11 @@ struct SessionsView: View { .labelStyle(.titleAndIcon) .imageScale(.small) } + */ } label: { CTBubble(type: .coloured(nil), size: .small, outlined: false, square: false, hasShadow: true, hasBackground: true, supportsDynamicResizing: true, expandWidth: false) { - Label("Import & Export", systemImage: "square.and.arrow.up.on.square") +// Label("Import & Export", systemImage: "square.and.arrow.up.on.square") + Label("Export", systemImage: "square.and.arrow.up.on.square") .labelStyle(.titleAndIcon) .imageScale(.small) } diff --git a/CubeTime/StopwatchManager/ExportViewModel.swift b/CubeTime/StopwatchManager/ExportViewModel.swift index ba043c4..c20d444 100644 --- a/CubeTime/StopwatchManager/ExportViewModel.swift +++ b/CubeTime/StopwatchManager/ExportViewModel.swift @@ -303,7 +303,7 @@ class ODSExportFormat: ExportFormat { class CSTimerExportFormat: ExportFormat { override func getName() -> String { - return "csTimer (JSON)" + return "JSON (csTimer)" } static var _readableContentTypes: [UTType] = [.commaSeparatedText]