mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Various fixes
This commit is contained in:
parent
a480df3ed6
commit
6301b2ba64
@ -239,15 +239,19 @@ final class CameraDevice {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
self.transaction(device) { device in
|
self.transaction(device) { device in
|
||||||
|
let torchMode: AVCaptureDevice.TorchMode
|
||||||
switch flashMode {
|
switch flashMode {
|
||||||
case .on:
|
case .on:
|
||||||
device.torchMode = .on
|
torchMode = .on
|
||||||
case .off:
|
case .off:
|
||||||
device.torchMode = .off
|
torchMode = .off
|
||||||
case .auto:
|
case .auto:
|
||||||
device.torchMode = .auto
|
torchMode = .auto
|
||||||
@unknown default:
|
@unknown default:
|
||||||
device.torchMode = .off
|
torchMode = .off
|
||||||
|
}
|
||||||
|
if device.isTorchModeSupported(torchMode) {
|
||||||
|
device.torchMode = torchMode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -257,7 +261,7 @@ final class CameraDevice {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
self.transaction(device) { device in
|
self.transaction(device) { device in
|
||||||
device.videoZoomFactor = max(1.0, min(10.0, zoomLevel))
|
device.videoZoomFactor = max(device.neutralZoomFactor, min(10.0, device.neutralZoomFactor + zoomLevel))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -749,10 +749,10 @@ final class CaptureControlsComponent: Component {
|
|||||||
blobOffset -= self.frame.width / 2.0
|
blobOffset -= self.frame.width / 2.0
|
||||||
var isBanding = false
|
var isBanding = false
|
||||||
if location.y < -10.0 {
|
if location.y < -10.0 {
|
||||||
let fraction = 1.0 + min(8.0, ((abs(location.y) - 10.0) / 60.0))
|
let fraction = min(8.0, ((abs(location.y) - 10.0) / 60.0))
|
||||||
component.zoomUpdated(fraction)
|
component.zoomUpdated(fraction)
|
||||||
} else {
|
} else {
|
||||||
component.zoomUpdated(1.0)
|
component.zoomUpdated(0.0)
|
||||||
}
|
}
|
||||||
|
|
||||||
if location.x < self.frame.width / 2.0 - 30.0 {
|
if location.x < self.frame.width / 2.0 - 30.0 {
|
||||||
|
@ -77,7 +77,7 @@ func verticesDataForRotation(_ rotation: TextureRotation, rect: CGRect = CGRect(
|
|||||||
|
|
||||||
func textureDimensionsForRotation(texture: MTLTexture, rotation: TextureRotation) -> (width: Int, height: Int) {
|
func textureDimensionsForRotation(texture: MTLTexture, rotation: TextureRotation) -> (width: Int, height: Int) {
|
||||||
switch rotation {
|
switch rotation {
|
||||||
case .rotate90Degrees, .rotate270Degrees:
|
case .rotate90Degrees, .rotate90DegreesMirrored, .rotate270Degrees:
|
||||||
return (texture.height, texture.width)
|
return (texture.height, texture.width)
|
||||||
default:
|
default:
|
||||||
return (texture.width, texture.height)
|
return (texture.width, texture.height)
|
||||||
|
@ -253,7 +253,7 @@ final class VideoInputPass: DefaultRenderPass {
|
|||||||
|
|
||||||
func textureDimensionsForRotation(width: Int, height: Int, rotation: TextureRotation) -> (width: Int, height: Int) {
|
func textureDimensionsForRotation(width: Int, height: Int, rotation: TextureRotation) -> (width: Int, height: Int) {
|
||||||
switch rotation {
|
switch rotation {
|
||||||
case .rotate90Degrees, .rotate270Degrees:
|
case .rotate90Degrees, .rotate270Degrees, .rotate90DegreesMirrored:
|
||||||
return (height, width)
|
return (height, width)
|
||||||
default:
|
default:
|
||||||
return (width, height)
|
return (width, height)
|
||||||
|
@ -1897,12 +1897,12 @@ public final class MediaEditorScreen: ViewController, UIDropInteractionDelegate
|
|||||||
if let self, let controller = self.controller, values.gradientColors != nil, controller.previousSavedValues != values {
|
if let self, let controller = self.controller, values.gradientColors != nil, controller.previousSavedValues != values {
|
||||||
if !isSavingAvailable && controller.previousSavedValues == nil {
|
if !isSavingAvailable && controller.previousSavedValues == nil {
|
||||||
controller.previousSavedValues = values
|
controller.previousSavedValues = values
|
||||||
|
controller.isSavingAvailable = false
|
||||||
} else {
|
} else {
|
||||||
self.hasAnyChanges = true
|
self.hasAnyChanges = true
|
||||||
|
|
||||||
controller.isSavingAvailable = true
|
controller.isSavingAvailable = true
|
||||||
controller.requestLayout(transition: .animated(duration: 0.25, curve: .easeInOut))
|
|
||||||
}
|
}
|
||||||
|
controller.requestLayout(transition: .animated(duration: 0.25, curve: .easeInOut))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user