diff --git a/src/components/gui/gui.jsx b/src/components/gui/gui.jsx
index 640e07fdd6d0af5b8d5fb20b14ffb490dda93313..5b38ef21e98c2648444a7788d85d9f641c92c883 100644
--- a/src/components/gui/gui.jsx
+++ b/src/components/gui/gui.jsx
@@ -57,6 +57,7 @@ const GUIComponent = props => {
         onActivateSoundsTab,
         onActivateTab,
         previewInfoVisible,
+        targetIsStage,
         soundsTabVisible,
         tipsLibraryVisible,
         vm,
@@ -134,11 +135,19 @@ const GUIComponent = props => {
                                         draggable={false}
                                         src={costumesIcon}
                                     />
-                                    <FormattedMessage
-                                        defaultMessage="Costumes"
-                                        description="Button to get to the costumes panel"
-                                        id="gui.gui.costumesTab"
-                                    />
+                                    {targetIsStage ? (
+                                        <FormattedMessage
+                                            defaultMessage="Backdrops"
+                                            description="Button to get to the backdrops panel"
+                                            id="gui.gui.backdropsTab"
+                                        />
+                                    ) : (
+                                        <FormattedMessage
+                                            defaultMessage="Costumes"
+                                            description="Button to get to the costumes panel"
+                                            id="gui.gui.costumesTab"
+                                        />
+                                    )}
                                 </Tab>
                                 <Tab
                                     className={tabClassNames.tab}
@@ -234,6 +243,7 @@ GUIComponent.propTypes = {
     onTabSelect: PropTypes.func,
     previewInfoVisible: PropTypes.bool,
     soundsTabVisible: PropTypes.bool,
+    targetIsStage: PropTypes.bool,
     tipsLibraryVisible: PropTypes.bool,
     vm: PropTypes.instanceOf(VM).isRequired
 };
diff --git a/src/containers/gui.jsx b/src/containers/gui.jsx
index a47467c0c338a164ee1a38de1ce0ee7a99c3f24d..8d6eb043511f76ae1b9e8619ce5a90781127121e 100644
--- a/src/containers/gui.jsx
+++ b/src/containers/gui.jsx
@@ -101,6 +101,7 @@ const mapStateToProps = state => ({
     costumesTabVisible: state.editorTab.activeTabIndex === COSTUMES_TAB_INDEX,
     loadingStateVisible: state.modals.loadingProject,
     previewInfoVisible: state.modals.previewInfo,
+    targetIsStage: state.targets.stage && state.targets.stage.id === state.targets.editingTarget,
     soundsTabVisible: state.editorTab.activeTabIndex === SOUNDS_TAB_INDEX,
     tipsLibraryVisible: state.modals.tipsLibrary
 });