mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-09-03 23:25:46 -04:00
gate icon and undiscoverable mode
This commit is contained in:
parent
fb6cf98f2b
commit
414ad4eeda
18 changed files with 108 additions and 52 deletions
|
@ -5,6 +5,7 @@ signal search(query: String)
|
|||
signal open_gate(url: String)
|
||||
signal gate_config_loaded(url: String, config: ConfigGate)
|
||||
signal gate_info_loaded(gate: Gate)
|
||||
signal gate_icon_loaded(gate: Gate) # might be empty icon
|
||||
signal gate_image_loaded(gate: Gate) # might be empty image
|
||||
signal gate_loaded(gate: Gate)
|
||||
signal gate_entered
|
||||
|
@ -51,6 +52,10 @@ func gate_info_loaded_emit(gate: Gate) -> void:
|
|||
gate_info_loaded.emit(gate)
|
||||
|
||||
|
||||
func gate_icon_loaded_emit(gate: Gate) -> void:
|
||||
gate_icon_loaded.emit(gate)
|
||||
|
||||
|
||||
func gate_image_loaded_emit(gate: Gate) -> void:
|
||||
gate_image_loaded.emit(gate)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue