Hi,
A temporary fix is to turn atom labelling upon recentering off
(set_label_on_recentre_flag(0) in python) - all the atom info is shown in the
bar below the graphics display anyway. Unfortunately there is no similar flag
that I am aware of to turn off atom labels after refinement or other model
manipulations.
An alternative is to bind a function that dismisses atom labels and distances
to a key, e.g. something like the following in your coot.py:
#Clear labels and distances
def clear_distances_and_labels():
remove_all_atom_labels()
clear_simple_distances()
add_key_binding("Clear labels and distances","z", lambda:
clear_distances_and_labels())
(type this into your coot.py if copy/pasting doesn't work - sometimes the
automatic formatting of quotation marks will make python unhappy.)
Cheers,
Oliver.