diff --git a/res/css/structures/_ContextualMenu.scss b/res/css/structures/_ContextualMenu.scss
index 658033339a..4b33427a87 100644
--- a/res/css/structures/_ContextualMenu.scss
+++ b/res/css/structures/_ContextualMenu.scss
@@ -115,8 +115,3 @@ limitations under the License.
border-top: 8px solid $menu-bg-color;
border-right: 8px solid transparent;
}
-
-.mx_ContextualMenu_spinner {
- display: block;
- margin: 0 auto;
-}
diff --git a/res/img/logo-spinner.svg b/res/img/logo-spinner.svg
deleted file mode 100644
index 08965e982e..0000000000
--- a/res/img/logo-spinner.svg
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
diff --git a/src/components/views/elements/InlineSpinner.js b/src/components/views/elements/InlineSpinner.js
index 757e809564..bbbe60d500 100644
--- a/src/components/views/elements/InlineSpinner.js
+++ b/src/components/views/elements/InlineSpinner.js
@@ -16,7 +16,6 @@ limitations under the License.
import React from "react";
import {_t} from "../../../languageHandler";
-import SettingsStore from "../../../settings/SettingsStore";
import {replaceableComponent} from "../../../utils/replaceableComponent";
@replaceableComponent("views.elements.InlineSpinner")
@@ -24,31 +23,15 @@ export default class InlineSpinner extends React.Component {
render() {
const w = this.props.w || 16;
const h = this.props.h || 16;
- const imgClass = this.props.imgClassName || "";
- let icon;
- if (SettingsStore.getValue('feature_new_spinner')) {
- icon = (
-
- );
- } else {
- icon = (
+ return (
+
- );
- }
-
- return (
-
{ icon }
+
);
}
}
diff --git a/src/components/views/elements/Spinner.js b/src/components/views/elements/Spinner.js
index 43030d01d5..3ad8444bd6 100644
--- a/src/components/views/elements/Spinner.js
+++ b/src/components/views/elements/Spinner.js
@@ -18,41 +18,21 @@ limitations under the License.
import React from "react";
import PropTypes from "prop-types";
import {_t} from "../../../languageHandler";
-import SettingsStore from "../../../settings/SettingsStore";
-const Spinner = ({w = 32, h = 32, imgClassName, message}) => {
- let icon;
- if (SettingsStore.getValue('feature_new_spinner')) {
- icon = (
-
- );
- } else {
- icon = (
-
- );
- }
+const Spinner = ({w = 32, h = 32, message}) => (
+
+ { message &&
{ message }
}
+
+
+);
- return (
-
- { message &&
{ message }
}
- { icon }
-
- );
-};
Spinner.propTypes = {
w: PropTypes.number,
h: PropTypes.number,
- imgClassName: PropTypes.string,
message: PropTypes.node,
};
diff --git a/src/components/views/right_panel/UserInfo.tsx b/src/components/views/right_panel/UserInfo.tsx
index d5f67623a2..9798b282f6 100644
--- a/src/components/views/right_panel/UserInfo.tsx
+++ b/src/components/views/right_panel/UserInfo.tsx
@@ -1307,7 +1307,7 @@ const BasicUserInfo: React.FC<{
}
if (pendingUpdateCount > 0) {
- spinner = ;
+ spinner = ;
}
let memberDetails;
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index d1fe791319..d6eef99dbf 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -793,7 +793,6 @@
"Send and receive voice messages": "Send and receive voice messages",
"Render LaTeX maths in messages": "Render LaTeX maths in messages",
"Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.": "Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution.",
- "New spinner design": "New spinner design",
"Message Pinning": "Message Pinning",
"Custom user status messages": "Custom user status messages",
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx
index 37f493f427..6ff14c16b5 100644
--- a/src/settings/Settings.tsx
+++ b/src/settings/Settings.tsx
@@ -197,12 +197,6 @@ export const SETTINGS: {[setting: string]: ISetting} = {
default: false,
controller: new IncompatibleController("feature_spaces"),
},
- "feature_new_spinner": {
- isFeature: true,
- displayName: _td("New spinner design"),
- supportedLevels: LEVELS_FEATURE,
- default: false,
- },
"feature_pinning": {
isFeature: true,
displayName: _td("Message Pinning"),