diff --git a/js/components/ClickedDiv.js b/js/components/ClickedDiv.js
new file mode 100644
index 00000000..81107c98
--- /dev/null
+++ b/js/components/ClickedDiv.js
@@ -0,0 +1,25 @@
+import React from "react";
+import classnames from "classnames";
+
+export default class ClickedDiv extends React.Component {
+ constructor(props) {
+ super(props);
+ this.state = { clicked: false };
+ }
+ render() {
+ return (
+
{
+ if (!this.state.clicked) {
+ this.setState({ clicked: true });
+ }
+ if (this.props.onMouseDown) {
+ this.props.onMouseDown();
+ }
+ }}
+ />
+ );
+ }
+}
diff --git a/js/components/MainWindow/Close.js b/js/components/MainWindow/Close.js
index 52906887..3cd11084 100644
--- a/js/components/MainWindow/Close.js
+++ b/js/components/MainWindow/Close.js
@@ -1,10 +1,11 @@
import React from "react";
import { connect } from "react-redux";
+import ClickedDiv from "../ClickedDiv";
import { close } from "../../actionCreators";
const Close = ({ onClick }) => (
-
+
);
export default connect(null, { onClick: close })(Close);
diff --git a/js/components/MainWindow/MainContextMenu.js b/js/components/MainWindow/MainContextMenu.js
index a5454930..8d65eab2 100644
--- a/js/components/MainWindow/MainContextMenu.js
+++ b/js/components/MainWindow/MainContextMenu.js
@@ -1,5 +1,6 @@
import React from "react";
import { connect } from "react-redux";
+import ClickedDiv from "../ClickedDiv";
import { close, setSkinFromUrl, openFileDialog } from "../../actionCreators";
import { ContextMenu, Hr, Node, Parent, LinkNode } from "../ContextMenu";
@@ -7,7 +8,7 @@ const MainContextMenu = props => (
}
+ handle={
}
>
{
- if (!this.state.clicked) {
- this.setState({ clicked: true });
- }
- }}
- title="Minimize"
- />
- );
- }
-}
+const Minimize = () => ;
+export default Minimize;
diff --git a/js/components/MainWindow/Shade.js b/js/components/MainWindow/Shade.js
index 4948bb58..60f52644 100644
--- a/js/components/MainWindow/Shade.js
+++ b/js/components/MainWindow/Shade.js
@@ -1,30 +1,16 @@
import React from "react";
-import classnames from "classnames";
import { connect } from "react-redux";
+import ClickedDiv from "../ClickedDiv";
import { toggleMainWindowShadeMode } from "../../actionCreators";
-class Shade extends React.Component {
- constructor(props) {
- super(props);
- this.state = { clicked: false };
- }
- render() {
- return (
- {
- if (!this.state.clicked) {
- this.setState({ clicked: true });
- }
- this.props.handleClick();
- }}
- title="Toggle Windowshade Mode"
- />
- );
- }
-}
+const Shade = props => (
+
+);
const mapDispatchToProps = {
handleClick: toggleMainWindowShadeMode
diff --git a/js/components/MainWindow/__snapshots__/index.test.js.snap b/js/components/MainWindow/__snapshots__/index.test.js.snap
index 67a799b1..1265eb64 100644
--- a/js/components/MainWindow/__snapshots__/index.test.js.snap
+++ b/js/components/MainWindow/__snapshots__/index.test.js.snap
@@ -30,7 +30,9 @@ exports[`MainWindow renders to snapshot 1`] = `
}
>
@@ -38,18 +40,20 @@ exports[`MainWindow renders to snapshot 1`] = `
diff --git a/js/skinSelectors.js b/js/skinSelectors.js
index 222e5c52..80efeece 100644
--- a/js/skinSelectors.js
+++ b/js/skinSelectors.js
@@ -224,7 +224,7 @@ export const imageSelectors = {
MAIN_TITLE_BAR_SELECTED: [".selected #title-bar"],
MAIN_EASTER_EGG_TITLE_BAR: [".llama #title-bar"],
MAIN_EASTER_EGG_TITLE_BAR_SELECTED: [".llama.selected #title-bar"],
- MAIN_OPTIONS_BUTTON: ["#title-bar #option"],
+ MAIN_OPTIONS_BUTTON: ["#title-bar #option.clicked"],
MAIN_OPTIONS_BUTTON_DEPRESSED: [
"#title-bar #option:active",
"#title-bar #option:selected"
@@ -233,7 +233,7 @@ export const imageSelectors = {
MAIN_MINIMIZE_BUTTON_DEPRESSED: ["#title-bar #minimize:active"],
MAIN_SHADE_BUTTON: [".selected #title-bar #shade.clicked"],
MAIN_SHADE_BUTTON_DEPRESSED: ["#title-bar #shade:active"],
- MAIN_CLOSE_BUTTON: [".selected #title-bar #close"],
+ MAIN_CLOSE_BUTTON: [".selected #title-bar #close.clicked"],
MAIN_CLOSE_BUTTON_DEPRESSED: ["#title-bar #close:active"],
MAIN_CLUTTER_BAR_BACKGROUND: ["#clutter-bar"],
MAIN_CLUTTER_BAR_BACKGROUND_DISABLED: ["#clutter-bar.disabled"],