|
@@ -706,8 +706,13 @@ void TopLevelWindow::SetOverlayIcon(const gfx::Image& overlay,
|
|
|
window_->SetOverlayIcon(overlay, description);
|
|
|
}
|
|
|
|
|
|
-void TopLevelWindow::SetVisibleOnAllWorkspaces(bool visible) {
|
|
|
- return window_->SetVisibleOnAllWorkspaces(visible);
|
|
|
+void TopLevelWindow::SetVisibleOnAllWorkspaces(bool visible,
|
|
|
+ mate::Arguments* args) {
|
|
|
+ mate::Dictionary options;
|
|
|
+ bool visibleOnFullScreen = false;
|
|
|
+ args->GetNext(&options) &&
|
|
|
+ options.Get("visibleOnFullScreen", &visibleOnFullScreen);
|
|
|
+ return window_->SetVisibleOnAllWorkspaces(visible, visibleOnFullScreen);
|
|
|
}
|
|
|
|
|
|
bool TopLevelWindow::IsVisibleOnAllWorkspaces() {
|