summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Dreßler <verdre@v0yd.nl>2023-04-26 19:31:53 +0200
committerJonas Dreßler <verdre@v0yd.nl>2023-04-26 19:31:53 +0200
commit6476e62bff910ae7a781fe962f22bc5939c51ba9 (patch)
treef5b93ea922dfdc4e48105dce7ce53d72c4931b7f
parentce8af73745182f40387b356e16afc64a5c8471ef (diff)
downloadgnome-shell-6476e62bff910ae7a781fe962f22bc5939c51ba9.tar.gz
screenshot: Remove leftover code in property getter
According to Ivan (author of that piece of code), this is most likely a leftover from a refactor and has no purpose anymore, so remove it. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2753>
-rw-r--r--js/ui/screenshot.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/ui/screenshot.js b/js/ui/screenshot.js
index fa67ff2d7..91c9635e7 100644
--- a/js/ui/screenshot.js
+++ b/js/ui/screenshot.js
@@ -1980,9 +1980,6 @@ var ScreenshotUI = GObject.registerClass({
}
get screencast_in_progress() {
- if (!('_screencastInProgress' in this))
- return false;
-
return this._screencastInProgress;
}