Commit 1912ed6407d3a779ef251d08eb63103a530ddc9f

Authored by tatiana
1 parent e6f258d8

FIX: Import panel thumbnails when selected from TreeCtrl

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
invesalius/gui/import_panel.py
... ... @@ -256,9 +256,10 @@ class SeriesPanel(wx.Panel):
256 256 def SetDicomSeries(self, pubsub_evt):
257 257 group = pubsub_evt.data
258 258 print "X"
  259 + self.dicom_preview.SetDicomGroup(group)
259 260 self.dicom_preview.Show(1)
260 261 self.serie_preview.Show(0)
261   - self.dicom_preview.SetDicomGroup(group)
  262 + self.sizer.Layout()
262 263 self.Update()
263 264  
264 265  
... ...