mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
Enable URL tooltips on hover for Element Desktop (#22286)
* Enable URL tooltips for Element Desktop Closes: #6532 Signed-off-by: Johannes Marbach <johannesm@element.io> * Fix access level Co-authored-by: Travis Ralston <travpc@gmail.com> * Add explicit access level where it exists in base class * Appease the linker Co-authored-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
parent
2032668e3a
commit
688dbc6cba
1 changed files with 4 additions and 0 deletions
|
@ -238,6 +238,10 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||||
electron.send('loudNotification');
|
electron.send('loudNotification');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public needsUrlTooltips(): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public async getAppVersion(): Promise<string> {
|
public async getAppVersion(): Promise<string> {
|
||||||
return this.ipc.call('getAppVersion');
|
return this.ipc.call('getAppVersion');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue