15 lines
306 B
Vala
15 lines
306 B
Vala
namespace GAuthenticator {
|
|
class App : Gtk.Application {
|
|
private GAuthenticator.Window? window = null;
|
|
|
|
protected override void activate() {
|
|
if (window == null) {
|
|
window = new GAuthenticator.Window(this);
|
|
window.show_all();
|
|
}
|
|
|
|
window.present();
|
|
}
|
|
}
|
|
}
|