Skip to content

Commit

Permalink
Merge pull request #123 from ma8ma/fix-mouse-config-button5
Browse files Browse the repository at this point in the history
Fix mouse button config to set Button5 correctly
  • Loading branch information
ma8ma committed Sep 21, 2019
2 parents f12fd7d + 8d4b617 commit a61b059
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/manual/2019.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ layout: default

<a name="0.3.0-unreleased"></a>
### [0.3.0-unreleased](https://github.com/JDimproved/JDim/compare/JDim-v0.2.0...master) (unreleased)
- Fix mouse button config to set Button5 correctly
([#123](https://github.com/JDimproved/JDim/pull/123))
- Implement tilt wheel for DragTreeView on GTK3
([#122](https://github.com/JDimproved/JDim/pull/122))
- Fix bug which is applied ascii art font falsely on GTK3
([#121](https://github.com/JDimproved/JDim/pull/121))
- Replace `gcry_md_hash_buffer` with `gnutls_hash_fast`
([#120](https://github.com/JDimproved/JDim/pull/120))
- Add a note of bug which is applied AA font falsely to thread view
Expand Down
2 changes: 1 addition & 1 deletion src/control/mousekeypref.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ bool InputDiag::on_button_press_event( GdkEventButton* event )
else if( button == 6 ) buttonname = "Tilt_Left";
else if( button == 7 ) buttonname = "Tilt_Right";
else if( button == 8 ) buttonname = "Button4";
else if( button == 9 ) buttonname = "Button6";
else if( button == 9 ) buttonname = "Button5";

if( ! buttonname.empty() ){
if( ctrl ) m_str_motion += "Ctrl+";
Expand Down

0 comments on commit a61b059

Please sign in to comment.