Skip to content

Commit

Permalink
removed dependency on libwebkit2gtk 3 & removed default value from pr…
Browse files Browse the repository at this point in the history
…operty
  • Loading branch information
voldyman committed Jun 9, 2019
1 parent 68ac6d8 commit b0f3b4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ find_package(PkgConfig)
# either of webkitpackages would do
pkg_search_module(WEBKIT REQUIRED
webkit2gtk-4.0
webkit2gtk-3.0
)

pkg_check_modules(DEPS REQUIRED
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class Window : Gtk.ApplicationWindow {
_current_file = value;
add_filename_to_title ();
}
default = null;
}

private bool file_modified = false;
Expand Down Expand Up @@ -81,6 +80,7 @@ public class Window : Gtk.ApplicationWindow {

public Window (MarkMyWordsApp app) {
this.app = app;
this._current_file = null;

add_action_entries (win_actions, this);

Expand Down

0 comments on commit b0f3b4f

Please sign in to comment.