Merge branch 'mbruce/bugfixes' into 'develop'
updated release notes See merge request BPHV_MIPS/vds_ios!91
This commit is contained in:
commit
49685c4254
@ -1131,7 +1131,7 @@
|
|||||||
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
|
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
|
||||||
CODE_SIGN_IDENTITY = "";
|
CODE_SIGN_IDENTITY = "";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 28;
|
||||||
DEFINES_MODULE = YES;
|
DEFINES_MODULE = YES;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
DYLIB_COMPATIBILITY_VERSION = 1;
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
||||||
@ -1168,7 +1168,7 @@
|
|||||||
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
|
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
|
||||||
CODE_SIGN_IDENTITY = "";
|
CODE_SIGN_IDENTITY = "";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 28;
|
||||||
DEFINES_MODULE = YES;
|
DEFINES_MODULE = YES;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
DYLIB_COMPATIBILITY_VERSION = 1;
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
||||||
|
|||||||
@ -84,18 +84,16 @@ open class Control: UIControl, Handlerable, ViewProtocol, Resettable, UserInfoab
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// /// Override to deal with setNeedsUpdate()
|
/// Override to deal with setNeedsUpdate()
|
||||||
// open override var isEnabled: Bool {
|
open override var isEnabled: Bool {
|
||||||
// get { !disabled }
|
get { !disabled }
|
||||||
// set {
|
set {
|
||||||
// if disabled != !newValue {
|
if disabled != !newValue {
|
||||||
// disabled = !newValue
|
disabled = !newValue
|
||||||
// }
|
}
|
||||||
// isUserInteractionEnabled = isEnabled
|
}
|
||||||
// setNeedsUpdate()
|
}
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
// MARK: - Initializers
|
// MARK: - Initializers
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
|
|||||||
@ -80,6 +80,16 @@ open class ButtonBase: UIButton, Buttonable, Handlerable, ViewProtocol, Resettab
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Override to deal with setNeedsUpdate()
|
||||||
|
open override var isEnabled: Bool {
|
||||||
|
get { !disabled }
|
||||||
|
set {
|
||||||
|
if disabled != !newValue {
|
||||||
|
disabled = !newValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
open override var state: UIControl.State {
|
open override var state: UIControl.State {
|
||||||
get {
|
get {
|
||||||
var state = super.state
|
var state = super.state
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
1.0.28
|
||||||
|
=======
|
||||||
|
- CXTDT-423141- Tabs - Incorrect spacing on top-aligned Fill container
|
||||||
|
|
||||||
1.0.27
|
1.0.27
|
||||||
=======
|
=======
|
||||||
- Added Loader View
|
- Added Loader View
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user