debugging

This commit is contained in:
ShaneSmiskol
2021-06-30 12:38:53 -07:00
parent 240214afc0
commit 67e32b4a3c
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -103,11 +103,13 @@ void Networking::requestScan() {
return;
}
}
qDebug() << "REQUESTING SCAN";
wifi->requestScan();
}
void Networking::refresh() {
if (this->isVisible() || firstRefresh) {
qDebug() << "REFRESHING UI";
wifiWidget->refresh();
an->refresh();
firstRefresh = false;
+3
View File
@@ -374,6 +374,7 @@ void WifiManager::stateChange(unsigned int new_state, unsigned int previous_stat
knownConnections.remove(getConnectionPath(connecting_to_network));
emit wrongPassword(connecting_to_network);
} else if (new_state == state_connected) {
qDebug() << "STATE_CONNECTED";
connecting_to_network = "";
refreshNetworks();
emit refreshSignal();
@@ -383,6 +384,7 @@ void WifiManager::stateChange(unsigned int new_state, unsigned int previous_stat
// https://developer.gnome.org/NetworkManager/stable/gdbus-org.freedesktop.NetworkManager.Device.Wireless.html
void WifiManager::propertyChange(const QString &interface, const QVariantMap &props, const QStringList &invalidated_props) {
if (interface == wireless_device_iface && props.contains("LastScan")) {
qDebug() << "LAST_SCAN";
if (knownConnections.isEmpty()) {
knownConnections = listConnections();
}
@@ -398,6 +400,7 @@ void WifiManager::connectionRemoved(const QDBusObjectPath &path) {
void WifiManager::newConnection(const QDBusObjectPath &path) {
knownConnections[path] = getConnectionSsid(path);
activateWifiConnection(knownConnections[path]);
qDebug() << "NEW_CONNECTION";
}
void WifiManager::disconnect() {