From 1ea662963f447bd7a1682afb939f8ff3886aa062 Mon Sep 17 00:00:00 2001 From: Isabelle Knott Date: Wed, 12 Apr 2017 20:15:45 -0400 Subject: Use shift+click instead of alt+click to bypass boost dialog (#1638) --- app/assets/javascripts/components/features/status/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/assets/javascripts/components/features/status/index.jsx') diff --git a/app/assets/javascripts/components/features/status/index.jsx b/app/assets/javascripts/components/features/status/index.jsx index 91302bc3f..48fea658d 100644 --- a/app/assets/javascripts/components/features/status/index.jsx +++ b/app/assets/javascripts/components/features/status/index.jsx @@ -92,7 +92,7 @@ const Status = React.createClass({ if (status.get('reblogged')) { this.props.dispatch(unreblog(status)); } else { - if (e.altKey || !this.props.boostModal) { + if (e.shiftKey || !this.props.boostModal) { this.handleModalReblog(status); } else { this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog })); -- cgit