author | desharna |
Wed, 27 Mar 2024 10:54:47 +0100 | |
changeset 80020 | b0a46cf73aa4 |
parent 73653 | d9823224fcfe |
child 81297 | 07f64697408e |
permissions | -rw-r--r-- |
73653
d9823224fcfe
build auxiliary jEdit component in Isabelle/Scala;
wenzelm
parents:
72247
diff
changeset
|
1 |
diff -ru jedit5.6.0/jEdit/org/gjt/sp/jedit/View.java jedit5.6.0-patched/jEdit/org/gjt/sp/jedit/View.java |
d9823224fcfe
build auxiliary jEdit component in Isabelle/Scala;
wenzelm
parents:
72247
diff
changeset
|
2 |
--- jedit5.6.0/jEdit/org/gjt/sp/jedit/View.java 2020-09-03 05:31:01.000000000 +0200 |
d9823224fcfe
build auxiliary jEdit component in Isabelle/Scala;
wenzelm
parents:
72247
diff
changeset
|
3 |
+++ jedit5.6.0-patched/jEdit/org/gjt/sp/jedit/View.java 2021-05-10 11:02:05.792257750 +0200 |
71932
65fd0f032a75
updated to jedit-5.6pre1 (repository version 25349);
wenzelm
parents:
69838
diff
changeset
|
4 |
@@ -1262,15 +1262,10 @@ |
68081 | 5 |
|
6 |
StringBuilder title = new StringBuilder(); |
|
7 |
||
8 |
- /* On Mac OS X, apps are not supposed to show their name in the |
|
9 |
- title bar. */ |
|
10 |
- if(!OperatingSystem.isMacOS()) |
|
11 |
- { |
|
12 |
- if (userTitle != null) |
|
13 |
- title.append(userTitle); |
|
14 |
- else |
|
15 |
- title.append(jEdit.getProperty("view.title")); |
|
16 |
- } |
|
17 |
+ if (userTitle != null) |
|
18 |
+ title.append(userTitle); |
|
19 |
+ else |
|
20 |
+ title.append(jEdit.getProperty("view.title")); |
|
21 |
||
22 |
for(int i = 0; i < buffers.size(); i++) |
|
23 |
{ |