Do not disable "save dynamic color theme" button during refresh

This commit is contained in:
schroda
2026-01-08 15:13:03 +01:00
parent f2b440a669
commit 62fc547957

View File

@@ -79,11 +79,8 @@ export const MangaToolbarMenu = ({ manga, onRefresh, refreshing }: IProps) => {
{isLargeScreen && (
<>
{settings.mangaDynamicColorSchemes && (
<CustomTooltip
title={t('settings.appearance.manga_dynamic_color_schemes.save')}
disabled={refreshing}
>
<IconButton onClick={saveDynamicColorTheme} disabled={refreshing} color="inherit">
<CustomTooltip title={t('settings.appearance.manga_dynamic_color_schemes.save')}>
<IconButton onClick={saveDynamicColorTheme} color="inherit">
<ColorLensIcon />
</IconButton>
</CustomTooltip>