fix: set cursor appropriately on user event hover (#3195)

master
Lars-Ragnar A. Haugen 2024-05-02 22:09:21 +02:00 committed by GitHub
parent 79ae530bd2
commit 0b6476da32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ auto AModule::doAction(const std::string& name) -> void {
}
void AModule::setCursor(Gdk::CursorType c) {
auto cursor = Gdk::Cursor::create(Gdk::HAND2);
auto cursor = Gdk::Cursor::create(c);
auto gdk_window = event_box_.get_window();
gdk_window->set_cursor(cursor);
}