# Markups placement not displaying in a scene without any data

**URL:** https://discourse.slicer.org/t/markups-placement-not-displaying-in-a-scene-without-any-data/2796
**Category:** Support
**Tags:** markups-fiducials
**Created:** [May 10, 2018, 7:48pm UTC](https://discourse.slicer.org/t/markups-placement-not-displaying-in-a-scene-without-any-data/2796 "2018-05-10T19:48:49Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![roozbehshams](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/roozbehshams/32/1544_2.png) [@roozbehshams](https://discourse.slicer.org/u/roozbehshams)
#### Post date: [May 10, 2018, 7:48pm UTC](https://discourse.slicer.org/t/markups-placement-not-displaying-in-a-scene-without-any-data/2796/1 "2018-05-10T19:48:49Z")

</div>

I’ve realized when trying to add markups fiducials in persistent mode, the display is not updated properly.  
This happens only when there is no data in the scene. When adding fiducials, they won’t show up unless:

- A fiducial is placed in another panel,
- The Modified() function of the markups node is called.  
To reproduce it, in an empty scene, choose the fiducial placement tool in persistent mode, place a few in one panel (the first one will show up). The rest will only show up if another fiducial is placed in another panel.

---

<div class="post-metadata">

### Author: ![lassoan](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/lassoan/32/13_2.png) [@lassoan](https://discourse.slicer.org/u/lassoan)
#### Post date: [May 14, 2018, 3:14am UTC](https://discourse.slicer.org/t/markups-placement-not-displaying-in-a-scene-without-any-data/2796/2 "2018-05-14T03:14:25Z")

</div>

I was able to reproduce the issue based on your description. We are in the process of reworking markup widgets, so I’m not sure anyone would have time to work on fixing the existing widgets. However, you can manually trigger a rendering update after each fiducial placement like this:

```
layoutManager = slicer.app.layoutManager()
for sliceViewName in layoutManager.sliceViewNames():
  layoutManager.sliceWidget(sliceViewName).sliceView().renderWindow().Render()
```
