Hey guys in case you’re still looking for a way around this. In the file ‘AdminDependencies.php’ in the line 39 I fixed this issue by changing this line from:
if ( ($screen->post_type == get_option(‘wpsl_post_type’)) || ($screen->id == ‘settings_page_wp_simple_locator’) ) {
To:
if ( $screen->id == ‘settings_page_wp_simple_locator’ ) {
Of course i am unsure if this is a solution that is 100% acceptable or ‘correct’ but it seemed to do the job for me and allowed me to keep using this plugin with a custom post type and the button to update posts was working properly after I made this edit.