Skip to content

Commit

Permalink
Merge pull request #29629 from kubabutkiewicz/fix/regression-after-st…
Browse files Browse the repository at this point in the history
…yles-refactor
  • Loading branch information
mountiny authored Oct 15, 2023
2 parents 5ec2e8a + f2803a4 commit 6808080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/components/TabSelector/TabSelectorItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ function TabSelectorItem({icon, title, onPress, backgroundColor, activeOpacity,
<Animated.View style={[styles.tabSelectorButton, StyleSheet.absoluteFill, styles.tabBackground(hovered, isFocused, backgroundColor)]}>
<TabIcon
icon={icon}
activeOpacity={styles.tabOpacity(hovered, isFocused, activeOpacity, inactiveOpacity)}
inactiveOpacity={styles.tabOpacity(hovered, isFocused, inactiveOpacity, activeOpacity)}
activeOpacity={styles.tabOpacity(hovered, isFocused, activeOpacity, inactiveOpacity).opacity}
inactiveOpacity={styles.tabOpacity(hovered, isFocused, inactiveOpacity, activeOpacity).opacity}
/>
<TabLabel
title={title}
activeOpacity={styles.tabOpacity(hovered, isFocused, activeOpacity, inactiveOpacity)}
inactiveOpacity={styles.tabOpacity(hovered, isFocused, inactiveOpacity, activeOpacity)}
activeOpacity={styles.tabOpacity(hovered, isFocused, activeOpacity, inactiveOpacity).opacity}
inactiveOpacity={styles.tabOpacity(hovered, isFocused, inactiveOpacity, activeOpacity).opacity}
/>
</Animated.View>
)}
Expand Down
2 changes: 0 additions & 2 deletions src/styles/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3456,8 +3456,6 @@ const styles = (theme: ThemeDefault) =>
taskTitleMenuItem: {
...writingDirection.ltr,
...headlineFont,
...flex.flexWrap,
...flex.flex1,
fontSize: variables.fontSizeXLarge,
maxWidth: '100%',
...wordBreak.breakWord,
Expand Down

0 comments on commit 6808080

Please sign in to comment.