Merge branch 'mbruce/bugfixes' into 'develop'

updated release notes

See merge request BPHV_MIPS/vds_ios!91
This commit is contained in:
Bruce, Matt R 2023-07-14 19:50:52 +00:00
commit 49685c4254
4 changed files with 26 additions and 14 deletions

View File

@ -1131,7 +1131,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 27;
CURRENT_PROJECT_VERSION = 28;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
@ -1168,7 +1168,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 27;
CURRENT_PROJECT_VERSION = 28;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;

View File

@ -84,18 +84,16 @@ open class Control: UIControl, Handlerable, ViewProtocol, Resettable, UserInfoab
}
}
// /// Override to deal with setNeedsUpdate()
// open override var isEnabled: Bool {
// get { !disabled }
// set {
// if disabled != !newValue {
// disabled = !newValue
// }
// isUserInteractionEnabled = isEnabled
// setNeedsUpdate()
// }
// }
//
/// Override to deal with setNeedsUpdate()
open override var isEnabled: Bool {
get { !disabled }
set {
if disabled != !newValue {
disabled = !newValue
}
}
}
//--------------------------------------------------
// MARK: - Initializers
//--------------------------------------------------

View File

@ -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 {
get {
var state = super.state

View File

@ -1,3 +1,7 @@
1.0.28
=======
- CXTDT-423141- Tabs - Incorrect spacing on top-aligned Fill container
1.0.27
=======
- Added Loader View