show_remove not working

In my new map module, I give the opportunity to upload a custom img for the marker.

When there is no image selected it defaults to the normal Google red pin, however there is no way to remove the image to revert back?

I have tried using the show_remove: true, but that does not seem to do anything?

'marker'     => array(
'type'      => 'photo',
'label'     => __( 'Custom Icon', 'fl_builder' ),
'help'     => __( 'Sizing of icon needs to be no bigger than 32x32px', 'fl_builder' ),
'show_remove'   => true
),  // end marker  

Am I missing something?

My work around for the interim

'custom_marker'     => array(
'type'      => 'select',
'label'     => __( 'Use Custom Marker', 'fl_builder' ),
'default'  => 'false',
'options'      => array(
'true'  => 'Yes',
'false' => 'No',
),
'toggle'        => array(
'true'       => array(
'fields'  => array('marker'),
),
), // end toggle
),  // end custom_marker
                    
'marker'     => array(
'type'      => 'photo',
'label'     => __( 'Custom Icon', 'fl_builder' ),
'help'     => __( 'Sizing of icon needs to be no bigger than 32x32px', 'fl_builder' ),
'show_remove'   => true
),  // end marker  

Hey Jon,

Are you on the latest 1.6.4.4 version? I just tried and was able to get it to work…

https://www.dropbox.com/s/wv6eu977ejzfst4/Screenshot%202015-12-09%2010.10.56.png?dl=0

https://www.dropbox.com/s/o67nxz1tlrdgq49/Screenshot%202015-12-09%2010.10.17.png?dl=0

Let me know.

Justin