This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/ui/AddressWidget.cpp b/src/ui/AddressWidget.cpp | |
index e2ddb6d..ee6549f 100644 | |
--- a/src/ui/AddressWidget.cpp | |
+++ b/src/ui/AddressWidget.cpp | |
@@ -142,6 +142,20 @@ void AddressWidget::mouseReleaseEvent(QMouseEvent *event) | |
} | |
} | |
+void AddressWidget::mouseDoubleClickEvent(QMouseEvent *event) | |
+{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/resources/schemas/options.ini b/resources/schemas/options.ini | |
index 3bf8faa..1e3d070 100644 | |
--- a/resources/schemas/options.ini | |
+++ b/resources/schemas/options.ini | |
@@ -78,6 +78,10 @@ value=false | |
type=bool | |
value=true | |
+[Browser/SearchWidgetWidth] | |
+type=integer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/widgets.dart'; | |
import 'package:flutter/material.dart'; | |
import 'dart:convert'; | |
/* | |
* TextView with HTML tags support By Kyle Katarn for Dart | |
* | |
* Original code by Erik Arvidsson, Mozilla Public License | |
* http://erik.eae.net/simplehtmlparser/simplehtmlparser.js | |
* and ported it on JavaScript by John Resig (ejohn.org) |