How do I show the Settings button?
If you've been playing around with controls, there's a chance you may have inadvertently hidden the settings button, the zoom toolbar, and/or the focus toolbar. This happens anytime you place a control in the "top-right" region, without explicitly telling Kumu you still want to see the other buttons that normally live there.
This guide offers some quick fixes to bring any of those buttons back.
For more context on why custom controls are able to hide the default buttons, see our full guide on controls.
Move top right controls to a different region
If you're okay with your controls being in a different region of the map, and not in the top-right, follow these steps:
Press
Ton your keyboard to open the right-hand side panel. If it's not already showing the Advanced Editor, click "Switch to advanced editor" at the bottom.At the top of the advanced editor, look for the
@controlsblock of code, then locate thetop-rightblock of code inside it.Change
top-rightto any other region:top,bottom,top-left,bottom-left, orbottom-right.
After that, the default buttons will be visible again on the map.
Move the default buttons to a different region
If you really want your custom control to be in the top-right, and you'd rather move the default buttons somewhere else, follow these steps:
Press
Ton your keyboard to open the right side panel. If it's not already showing the Advanced Editor, click "Switch to advanced editor" at the bottom.At the top of the advanced editor, look for
@controls {. Place your cursor after the curly bracket{, and pressEnteron your keyboard to move to the next line.On the next line, type the name of a different controls region:
top,bottom,top-left,bottom-left, orbottom-right. Type a space, then a curly bracket{, then hitEnteragain to open a new block.Inside that block of code, add the controls code for the settings toolbar, zoom toolbar, and focus toolbar, as shown in the complete example below:
@controls {
// Replace top-left with any region other than top-right
top-left {
zoom-toolbar {}
settings-toolbar {}
focus-toolbar {}
}
}Last updated
Was this helpful?