diff --git a/src/ch/blinkenlights/android/vanilla/LibraryActivity.java b/src/ch/blinkenlights/android/vanilla/LibraryActivity.java index 3955ce6a..4f1f857b 100644 --- a/src/ch/blinkenlights/android/vanilla/LibraryActivity.java +++ b/src/ch/blinkenlights/android/vanilla/LibraryActivity.java @@ -1,6 +1,6 @@ /* * Copyright (C) 2012 Christopher Eby - * Copyright (C) 2015 Adrian Ulrich + * Copyright (C) 2015-2017 Adrian Ulrich * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -316,6 +316,9 @@ public class LibraryActivity // We intercept these to avoid showing the activity-default menu mBottomBarControls.openMenu(); break; + case KeyEvent.KEYCODE_SEARCH: + mBottomBarControls.showSearch(true); + break; default: return false; }