diff --git a/src/components/scenes/GuiPluginListScene.tsx b/src/components/scenes/GuiPluginListScene.tsx index 440109ff8bb..3379fc49480 100644 --- a/src/components/scenes/GuiPluginListScene.tsx +++ b/src/components/scenes/GuiPluginListScene.tsx @@ -373,7 +373,7 @@ class GuiPluginList extends React.PureComponent { return ( <> - + @@ -433,7 +433,7 @@ class GuiPluginList extends React.PureComponent { ListHeaderComponent={this.renderTop} renderItem={this.renderPlugin} keyExtractor={(item: GuiPluginRow) => item.pluginId + item.title} - contentContainerStyle={{ paddingTop: 0 }} + style={styles.listStyle} /> )} @@ -446,6 +446,9 @@ const getStyles = cacheStyles((theme: Theme) => ({ marginLeft: -theme.rem(0.5), width: '100%' }, + listStyle: { + overflow: 'visible' + }, sceneContainer: { flex: 1 },