This commit is contained in:
Isaac 2025-06-28 19:48:34 +02:00
parent 7512f7f017
commit a23deded22
109 changed files with 376 additions and 68 deletions

View file

@ -11,6 +11,9 @@ objc_library(
includes = [
"Sources",
],
copts = [
"-Werror",
],
visibility = [
"//visibility:public",
],

View file

@ -127,7 +127,7 @@ static bool ProgressWindowIsLight = true;
[self dismiss:animated completion:nil];
}
- (void)dismiss:(bool)animated completion:(void (^)())completion
- (void)dismiss:(bool)animated completion:(void (^)(void))completion
{
if (animated)
{

View file

@ -117,8 +117,6 @@ static void drawSvgPath(CGContextRef context, NSString *path) {
}
}
static bool ProxyWindowIsLight = true;
@interface ProxySpinnerView : UIView
@property (nonatomic, copy) void (^onSuccess)(void);