Merge branch '2.7.8' into tak-server

This commit is contained in:
Ben Meadors 2026-01-19 12:46:07 -06:00 committed by GitHub
commit be971c2d2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 654 additions and 151 deletions

View file

@ -0,0 +1,13 @@
//
// UIKeyboard.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 1/7/26.
//
import UIKit
extension UIKeyboardType {
static var emoji: UIKeyboardType {
return UIKeyboardType(rawValue: 124) ?? .default
}
}