Question about the arrangement of images in the gallery

If you want to fix this and willing to make a code change,

edit deepgallery.py

add the one line (be sure leading spaces are correct):

self.process_media(event)

as shown below

OLD:

def process_events(self, gobj):
    """
    Process events.
    """
    for event_ref in gobj.get_event_ref_list():
        event_handle = event_ref.get_reference_handle()
        event = self.dbstate.db.get_event_from_handle(event_handle)
        self.process_citations(event)

NEW:

def process_events(self, gobj):
    """
    Process events.
    """
    for event_ref in gobj.get_event_ref_list():
        event_handle = event_ref.get_reference_handle()
        event = self.dbstate.db.get_event_from_handle(event_handle)
        self.process_media(event)
        self.process_citations(event)