Skip to content

Commit

Permalink
old change
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerShubi committed Sep 15, 2021
1 parent 9bf260b commit bcc1dc4
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions CameraNetwork/gui/enaml_files/docks.enaml
Original file line number Diff line number Diff line change
Expand Up @@ -465,18 +465,19 @@ enamldef TimesView(DockItem):
clicked ::
main.create_map()
index = times.img_index
main.broadcast_message(
gs.MSG_TYPE_SEEK,
kwds=dict(
seek_time=index[0],
hdr_index=-1 if HDR_cb.checked else index[1],
normalize=True,
jpeg=quality_fld.value if JPEG_cb.checked else False,
resolution=resolution_fld.value,
correct_radiometric=correct_radiometric_cb.checked,
ignore_date_extrinsic=ignore_date_extrinsics_cb.checked,
if len(index) >1:
main.broadcast_message(
gs.MSG_TYPE_SEEK,
kwds=dict(
seek_time=index[0],
hdr_index=-1 if HDR_cb.checked else index[1],
normalize=True,
jpeg=quality_fld.value if JPEG_cb.checked else False,
resolution=resolution_fld.value,
correct_radiometric=correct_radiometric_cb.checked,
ignore_date_extrinsic=ignore_date_extrinsics_cb.checked,
)
)
)



Expand Down

0 comments on commit bcc1dc4

Please sign in to comment.