plyght's own C++ browser for macOS
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

up

plyght bb43bdbd 8acadf9d

+2 -2
+1 -1
CMakeLists.txt
··· 1 1 cmake_minimum_required(VERSION 3.24) 2 2 3 - project(pocb VERSION 0.1.1 LANGUAGES CXX OBJCXX) 3 + project(pocb VERSION 0.1.0 LANGUAGES CXX OBJCXX) 4 4 5 5 set(CMAKE_CXX_STANDARD 20) 6 6 set(CMAKE_CXX_STANDARD_REQUIRED ON)
+1 -1
src/app/BrowserWindow.cpp
··· 61 61 setAttribute(Qt::WA_TranslucentBackground); 62 62 setAttribute(Qt::WA_NoSystemBackground); 63 63 setAutoFillBackground(false); 64 - #ifdef Q_OS_MACOS 64 + #if defined(Q_OS_MACOS) && QT_VERSION >= QT_VERSION_CHECK(6, 9, 0) 65 65 // Qt 6.9+ flags: extend the client area under the titlebar and stop Qt 66 66 // from reserving safe-area margins for the titlebar in the central 67 67 // widget. Without these, QMainWindow leaves a band of empty space at the