mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-03 11:02:37 +02:00
qt, android: Add GUIUtil::IsEscapeOrBack helper
This commit is contained in:
@@ -428,6 +428,15 @@ namespace GUIUtil
|
||||
*/
|
||||
void ShowModalDialogAndDeleteOnClose(QDialog* dialog);
|
||||
|
||||
inline bool IsEscapeOrBack(int key)
|
||||
{
|
||||
if (key == Qt::Key_Escape) return true;
|
||||
#ifdef Q_OS_ANDROID
|
||||
if (key == Qt::Key_Back) return true;
|
||||
#endif // Q_OS_ANDROID
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace GUIUtil
|
||||
|
||||
#endif // BITCOIN_QT_GUIUTIL_H
|
||||
|
Reference in New Issue
Block a user