Skip to content

Commit

Permalink
Merge release/1.107.0 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
daxmobile authored Sep 20, 2024
2 parents 05036ee + 57ce739 commit 83cfe9f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 66 deletions.
62 changes: 0 additions & 62 deletions .github/actions/create-tag-and-github-release/action.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Configuration/BuildNumber.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 267
CURRENT_PROJECT_VERSION = 268
13 changes: 10 additions & 3 deletions DuckDuckGo/HomePage/View/HomePageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,16 @@ extension HomePage.Views {
.animation(.easeInOut, value: settingsVisibilityModel.isSettingsVisible)

if !settingsVisibilityModel.isSettingsVisible {
SettingsButtonView(isSettingsVisible: $settingsVisibilityModel.isSettingsVisible)
.padding([.bottom, .trailing], 14)
.fixedColorScheme(for: settingsModel.customBackground)
VStack {
Spacer()
HStack {
Spacer(minLength: Self.targetWidth + (geometry.size.width - Self.targetWidth)/2)
SettingsButtonView(isSettingsVisible: $settingsVisibilityModel.isSettingsVisible)
.padding([.bottom, .trailing], 14)
}
}
.frame(width: geometry.size.width, height: geometry.size.height)
.fixedColorScheme(for: settingsModel.customBackground)
}
}
.background(
Expand Down
1 change: 1 addition & 0 deletions DuckDuckGo/TabPreview/TabPreviewWindowController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ final class TabPreviewWindowController: NSWindowController {
if delay {
// Set up a new timer to hide the preview after 0.05 seconds
// It makes the transition from one preview to another more fluent
hideTimer?.invalidate()
hideTimer = Timer.scheduledTimer(withTimeInterval: 0.05, repeats: false) { _ in
removePreview(allowQuickRedisplay: allowQuickRedisplay)
}
Expand Down

0 comments on commit 83cfe9f

Please sign in to comment.