This anomaly only appears in the create/edit module screen, the
system displays the content and WORKS as expected!
In a module/controller (newly updated snippetController), if you
have multiple actions (showall and highlight) that use the same
(default) view 'showall', the action name appears correctly, but
the available view name is 'highlight - Default'. Again, things
work, but this list is poorly displayed (lowercase and underscores
if method name contains them)
My work-around is to COPY the view template and give it the same
name as the action. I also tried other approaches like using a
different method name such as showall_highlight which appears in
the list as 'showall_highlight - Default'. However, the end result
is the same, the content is displayed as expected, but the 'content
display' dropdown list in the module create/edit screen doesn't
look nice.
Maybe I have the wrong concept of MVC, but if you can use the
same view to display any data the controller or model spits,
shouldn't you be able to use the same view?
Maybe this is a one-time scenario (two actions, single view) and
may not be worth addressing.