Skip to content
This repository was archived by the owner on May 3, 2018. It is now read-only.

Commit 3c0d3a8

Browse files
author
KJ
committed
Minor changes
1 parent 452c7cd commit 3c0d3a8

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
write
1+
Write
22
=====
33

44
elementaryOS Writing application
5+
Native application built on Granite, GTK, Vala and WebKit.
56

7+
Dependencies:
8+
gtk+-3.0
9+
granite
10+
webkitgtk-3.0
11+
javascriptcoregtk-3.0
12+
13+
To Build & Run:
14+
Execute: ./quickbuild.sh
615

716
<img src="http://projects.nsfugames.com/write.png" style="width: 90%; margin: 0px auto;" />

src/UI/DocumentView.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ namespace Write
6262

6363
load_string(Window.GetResourceAsString("/org/elementary/write/template.html"), "text/html", "UTF8", "");
6464
load_finished.connect(on_load);
65-
user_changed_contents.connect(handle_changed_contents);
65+
selection_changed.connect(handle_selection_changed);
6666
}
6767

6868
/**
@@ -101,7 +101,7 @@ namespace Write
101101
}
102102
}
103103

104-
private void handle_changed_contents()
104+
private void handle_selection_changed()
105105
{
106106
var Context = Window.ContextBar;
107107

0 commit comments

Comments
 (0)