@@ -572,12 +572,14 @@ AppUIStateStorables app_ui_state_storable_local_reducer(AppUIStateStorables stor
572572 ..major_tick_width_font_size = TypedReducer <double , actions.MajorTickWidthFontSizeSet >(
573573 major_tick_width_font_size_reducer,
574574 )(storables.major_tick_width_font_size, action)
575- ..stroke_width = TypedReducer <double , actions.StrokeWidthSet >(
576- stroke_width_reducer,
577- )(storables.stroke_width, action)
578- ..crossover_opacity = TypedReducer <double , actions.CrossoverOpacitySet >(
579- crossover_opacity_reducer,
580- )(storables.crossover_opacity, action)
575+ ..stroke_width = TypedReducer <double , actions.StrokeWidthSet >(stroke_width_reducer)(
576+ storables.stroke_width,
577+ action,
578+ )
579+ ..crossover_opacity = TypedReducer <double , actions.CrossoverOpacitySet >(crossover_opacity_reducer)(
580+ storables.crossover_opacity,
581+ action,
582+ )
581583 ..crossover_opacity_same_helix = TypedReducer <double , actions.CrossoverOpacitySameHelixSet >(
582584 crossover_opacity_same_helix_reducer,
583585 )(storables.crossover_opacity_same_helix, action)
@@ -684,12 +686,14 @@ AppUIStateStorables app_ui_state_storable_local_reducer(AppUIStateStorables stor
684686 ..export_svg_text_separately = TypedReducer <bool , actions.ExportSvgTextSeparatelySet >(
685687 export_svg_text_separately_reducer,
686688 )(storables.export_svg_text_separately, action)
687- ..export_svg_5p_ends = TypedReducer <bool , actions.ExportSvg5pEndsSet >(
688- export_svg_5p_ends_reducer,
689- )(storables.export_svg_5p_ends, action)
690- ..export_svg_3p_ends = TypedReducer <bool , actions.ExportSvg3pEndsSet >(
691- export_svg_3p_ends_reducer,
692- )(storables.export_svg_3p_ends, action)
689+ ..export_svg_5p_ends = TypedReducer <bool , actions.ExportSvg5pEndsSet >(export_svg_5p_ends_reducer)(
690+ storables.export_svg_5p_ends,
691+ action,
692+ )
693+ ..export_svg_3p_ends = TypedReducer <bool , actions.ExportSvg3pEndsSet >(export_svg_3p_ends_reducer)(
694+ storables.export_svg_3p_ends,
695+ action,
696+ )
693697 ..ox_export_only_selected_strands = TypedReducer <bool , actions.OxExportOnlySelectedStrandsSet >(
694698 ox_export_only_selected_strands_reducer,
695699 )(storables.ox_export_only_selected_strands, action)
0 commit comments